C Program For Display Hello World

Ram Pothuraju
#include <stdio.h>
int main()
{
   // printf() displays the string inside quotation
   printf("Hello World");
   return 0;
}


Output

Hello World


Post a Comment

0Comments

Post a Comment (0)