初始C语言是怎么弄的呢
看别人写的代码慢慢学呗。
#include<stdio.h>
int main()
{
/*在双引号中间输入Hello World*/
printf("Hello World");
return 0;
}
在printf后面的括号内输入hello world 然后结果为显示hello world,这个可以在右边看到的