编写一个C语言程序,输出结果为hello world

如题所述

第1个回答  2012-08-05
#include <stdio.h>
void main()
{
printf("hello world!\n");
}
第2个回答  2012-08-05
一般教材第一个程序
#include <stdio.h>

int main()
{
printf("hello word");

return 0;
}追问

大神,你能教我吗?
我菜鸟

追答

话说,你先看书,不会就上来问吧

追问

我有书,但晕

第3个回答  2020-10-13
#include <stdio.h>

int main(void) {
printf("Hello World");
}
第4个回答  2012-08-05
#include<stdio.h>
main()
{
printf("hello world");
while(1);
}追问

大神,你能教我吗?
我菜鸟。

追答

就是这样的 printf是输出函数

第5个回答  2020-02-24
相似回答