Basic grammar C language: HelloWorld program



  Preface

It seems that the beginning of every language starts with Hello World. This may be the right plot for no programmer!

Think



Hello World, a test program that tests an environment, and if this program does not run successfully. No other procedures can be performed. Many experts say that only programming programs under linux can really exercise your skills. Because of the visual stdio series of software, too many processes are hidden.

Therefore, under the Linux system, start our C language practice!



Code






#include

  

     #include

   

      int main(int argc,char **argv) { printf("!!!Hello World!!!"); /* prints !!!Hello World!!! */ return EXIT_SUCCESS; }

    

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326400889&siteId=291194637