C语言在最后一个括号报错
发布网友
发布时间:2023-10-12 12:50
我来回答
共4个回答
热心网友
时间:2024-03-17 08:23
你好!!
你是在MFC的方式下建立的 02.cpp 文件吗
你试试下面的方法吧:
方法1:右键单击项目工程中的cpp文件,在菜单Project->Settings->C/C++->Precompile Header,
设置为第一项:Not using precompile headers。
方法2:在.cpp文件开头添加包含文件 #include"stdafx.h"
热心网友
时间:2024-03-17 08:24
#include <stdio.h>
int main (void)
{
printf("F the world ~!! \n");
return 0;
}
这样就不会报错了,头文件没写,printf()后的分号也有有问题哦,建议初学c语言按照最新标准c99,养成好习惯。
热心网友
时间:2024-03-17 08:24
printf("F the world ~!!\n");里面最后的分号是中文的,必须是英文的才行
热心网友
时间:2024-03-17 08:25
很明显,你的printf语句最后的分号是中文字符,不是英文字符。还有main()函数是要前缀类型的,像void,int等,最好写上