最佳答案
我只是在看书
ISO/IEC9899:201x 委员会草案ー2011年4月12日
其中我发现下5.1.2.2.3程序终止
..reaching the } that terminates the main function returns a value of 0.
它意味着如果在 main()
中没有指定任何 return 语句,并且程序运行成功,那么在 main 的大括号}处将返回0。
但是在下面的代码中,我没有指定任何 return 语句,但是它不返回0
#include<stdio.h>
int sum(int a,int b)
{
return (a + b);
}
int main()
{
int a=10;
int b=5;
int ans;
ans=sum(a,b);
printf("sum is %d",ans);
}
编译
gcc test.c
./a.out
sum is 15
echo $?
9 // here it should be 0 but it shows 9 why?