C Program to Print Hello World

By | July 6, 2019

Task: Write a very first and basic C Program to print Hello World.

The source code of C Program to print Hello World

/*
 C Program to display
 Hello World

*/
#include<stdio.h>

int main()
{
   
   printf("Hello World!");
   
   return 0;
}

Output:

Hello World

Loading

Leave a Reply

Your email address will not be published. Required fields are marked *