C program " hello world"

 


#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

Comments

Popular posts from this blog

Program to find the average of two numbers

Program to add two integer numbers