
{
int a, b, sum;
a = 123;
b = 456;
sum = a + b;
printf("sum=%d\n", sum);
return 0;
}
int main(),最后加个return 0;
int main()
代码没什么问题啊,怎么了,出现了什么错误