#include<stdio.h>
int main(void)\\主要是通过调用库函数的printf来输出到标准输出设备上,该函数的头文件在stdio.h中
{
printf("Practice makes perfect!\n");
return 0;\\记得返回,因为定义main函数时设置了返回值为int类型
}
#include<stdio.h>
int main(void)\\主要是通过调用库函数的printf来输出到标准输出设备上,该函数的头文件在stdio.h中
{
printf("Practice makes perfect!\n");
return 0;\\记得返回,因为定义main函数时设置了返回值为int类型
}