Search:

Type: Posts; User: BillyTKid

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    4,561

    On VStudio you must work with *.c files for C...

    On VStudio you must work with *.c files for C programming, otherwise your code will compiled as C++!
  2. Replies
    7
    Views
    4,561

    In C there is no typecast for malloc needed. For...

    In C there is no typecast for malloc needed. For constants you should use defines.

    #define MAXSTRSIZE 257
    #define NUMPOINTER 12

    Rec1 *a;

    a = malloc(sizeof*a);

    a->s1 =...
Results 1 to 2 of 2