求大神解答为什么我写 system("pause") return会报错~
#include
int main(void)
{
system("pause");
return;
}
会提示报错,错误内容如下:
错误 1 error C2561:
“main”: 函数必须返回值
c:\users\吴吉男\desktop\c++\test100\test100\test.cpp
7 1 test100 |
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|
|
|
|
把return改成return 0就好了,c的基本格式 |
|
|
|
|
你的main返回值是int的,return 0; 试试 |
|
|
|
|