C语言hello world 代码

22 阅读1分钟

C语言 hello world 代码

#include<stdio.h>  
int main()  
{  
printf("hello world ");  
return 0;  
}