这是啥问题
hello.c: In function 'main': hello.c:10:15: error: expected declaration specifiers or '...' before numeric constant int Learn(5); ^
这是错误提示,
函数是
int Learn(int n)
{
printf("学习了%d门课程",n);
}
主函数调用
int Learn(5);
写法上没啥问题就只有这个提示所以其他的我就省略了
hello.c: In function 'main': hello.c:10:15: error: expected declaration specifiers or '...' before numeric constant int Learn(5); ^
这是错误提示,
函数是
int Learn(int n)
{
printf("学习了%d门课程",n);
}
主函数调用
int Learn(5);
写法上没啥问题就只有这个提示所以其他的我就省略了
2019-09-29
举报