qq_慕哥0561527
2020-11-27 21:43
#include <studio.h>
int main();
{
printf("Hello World");
return 0;
}
你这个首先是头文件名称打错了,<studio.h>应改为<stdio.h>
其次主函数后面不用打英文半角符号即;
最后函数的返回值return后面是空集符号∅而不是数字0。
头文件应该是<stdio.h>,main()后面没分号
main()后面没有分号
C语言入门
926020 学习 · 20793 问题
相似问题