1

我在 C 中编写了以下代码:

 1 |   #include <stdio.h>
 2 |   #include <stdlib.h>
 3 |   #include <time.h>
 4 |   
 5 |   typedef struct{
 6 |           int cod;
 7 |   } car;
 8 |   
 9 |   int main(int argc, char *argv[])
10 |   {
11 |     int i;
12 |     car store[10];
13 |     srand(time(NULL));
14 |     for (i=0;i<10;i++){
15 |         store[i].cod=rand();
16 |     }
17 |     system("PAUSE");
18 |     return 0;
19 |   }

问题是这段代码无法编译。我得到的错误是:

 7  C:\Dev-Cpp\main.c [Warning] useless keyword or type name in empty declaration 
 7  C:\Dev-Cpp\main.c [Warning] unnamed struct/union that defines no instances 
15  C:\Dev-Cpp\main.c request for member `cod' in something not a structure or union 
4

1 回答 1

3

它似乎是您正在使用的编译器中的一个错误。我只能建议为您的结构类型添加标签

typedef struct car {
        int cod;
} car;

它不需要对其余代码进行任何更改,但可能有助于编译。

于 2013-07-13T20:09:20.857 回答