1.int型main函数需要有返回值,所以末尾那个return 0就要写上。
例如
:
# include <stdio.h>
int main
{
printf("*****************\n这是我的第一个c语言程序\n*****************");
return 0;
}
输出结果
:
*****************\n这是我的第一个c语言程序\n*****************
2.void型main函数没有返回值,末尾不需要加return 0
例如
:
#include <stdio.h>
void main()
{
printf("*****************\n这是我的第一个c语言程序\n*****************");
}
输出结果一样