First Program In C (Print Hello World)

C Hello World Program


 #include <stdio.h>
 int main()
 {
   /* printf function displays the content that is
    * passed between the double quotes.
    */
   printf("Hello World");
   
   return 0;
 }
               

OUtput:


 Hello World
 --------------