Search:

Type: Posts; User: tama00

Search: Search took 0.01 seconds.

  1. Thread: C++ in C

    by tama00
    Replies
    3
    Views
    1,068

    create a header file with the approate varibles...

    create a header file with the approate varibles and function prototypes, compile the c++ source into object code and the c source into object code, then use a linker and link both object codes into...
  2. Thread: Gtk

    by tama00
    Replies
    3
    Views
    1,137

    you need to download the windows gtk developers...

    you need to download the windows gtk developers libaray...

    Anywas i dont know many developers.. if any.. that develop GTK+ applications under Windows..
    So i dont know where to find those...
  3. Replies
    24
    Views
    3,491

    scanf ("%s", name); that should solve your...

    scanf ("%s", name);

    that should solve your problem

    and array can be passed as an address
  4. scanf("%s",&person); incorrect i belive it...

    scanf("%s",&person);


    incorrect i belive it should be


    scanf("%s",person);


    Its an array. so u dont need the &
  5. Replies
    6
    Views
    1,762

    Think of what you are storing like a database. In...

    Think of what you are storing like a database. In a database you need a record, some feilds and the size of those fields. :)




    #include<stdio.h>
    #include <string.h>

    int main (void)
    {
Results 1 to 5 of 5