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

如题
2024-11-24 20:26:08
推荐回答(4个)
回答1:

#include
int main()
{
printf("Hello,World!\n");
return 0;
}

回答2:

#include
int main()
{
printf("Hello World!");
return 0;
}

turc好像不能运行?

回答3:

void main(){
printf("hello world");
}

回答4:

#include "stdio.h"
main()
{
printf("hello world");
printf("\n");
}