首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘_attribute_’ before ‘{’ token,该如何处理

2012-10-16 
error: expected ‘’, ‘,’, ‘’, ‘asm’ or ‘__attribute__’ before ‘{’ tokenhello.c code:#includestdio

error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token
hello.c code:
#include<stdio.h>
void main
{
printf("hello work!");
}

compile:$ cc helloWork.c
helloWork.c:3: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token


why??


[解决办法]
我晕 main 后面没有括号啊
[解决办法]
main的括号呢?
[解决办法]
int man(void)
[解决办法]

C/C++ code
#include <stdio.h>int main(int argc, char *argv[]){  printf("Hello World ...\n");  return 0;}
[解决办法]
再精简也写个"main()"吧,不要连括号都省。

热点排行