Search:

Type: Posts; User: laserlight

Search: Search took 0.27 seconds.

  1. Notice that I suggested: struct employee...

    Notice that I suggested:

    struct employee employees[MAX];

    Of course, as Salem notes, that is not the end of the story.
  2. This is not an array declaration: struct...

    This is not an array declaration:

    struct employee employees;
  3. This is most likely wrong: #define MAX = 30;...

    This is most likely wrong:

    #define MAX = 30;
    The C preprocessor directives differ from "normal" C. You probably intended:

    #define MAX 30

    I notice this in main:

    char surname[30];
Results 1 to 3 of 3