hello world用标准C语言怎么写?

如题

第1个回答  2013-12-04
#include <stdio.h>
int main()
{
printf("Hello,World!\n");
return 0;
}
第2个回答  2013-12-04
#include <cstdio>
int main()
{
printf("Hello World!");
return 0;
}

turc好像不能运行?本回答被网友采纳
第3个回答  2013-12-04
void main(){
printf("hello world");
}
第4个回答  2013-12-04
#include "stdio.h"
main()
{
printf("hello world");
printf("\n");
}
相似回答