任務:創建工人數據庫。該計劃還應該輸出工人的信息 名稱和統計所有工人的平均工資。當我嘗試編譯此代碼C中的結構問題
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct worker {
char name[10];
int salary;
};
int main (void);
struct worker p1 = {"koko", 3400};
printf ("name=%s,salary=%d,p1,name,p1,salary");
return(0);
}
我得到
./dz2.c:11:9: error: expected declaration specifiers or «...» before string constant
./dz2.c:12:1: error: expected identifier or «(» before «return»
./dz2.c:13:1: error: expected identifier or «(» before «}» token
我會爲這個問題的解決表示感謝。
格式化代碼很好。代碼不只是供電腦閱讀 – sehe