#include<stdio.h>
int main()
{
printf("hello,word");
return 0;
}
在这里为什么要用 int 和 return 0;
int 是main函数返回值类型 所以才有 return 0