Hello World

#include<stdio.h>

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

 return 0;      
}
  1. #include <stdio.h>  
  2.   
  3. int main()  
  4. {  
  5.     printf("hello world! ");  
  6.     return 0;  
  7. }
原文地址:https://www.cnblogs.com/liuchengchuxiao/p/4103088.html