The First C Program

Hello friend! 
Today we learn the first program in C Language. Every programmer writes this program in his life. 

Hello World!

"Hello World!" is the first and simplest code that is written by every beginner coder. I and our team members also write this code once in their life.

Code:

1
2
3
4
5
6
7
8
9
//First C Program
#include<stdio.h>
int main() { 

   //Print "Hello World!" in output
   printf("Hello World!");
   return 0;

} 

Output:


 
  Hello World!


Thanks, Guys

Visit Again and comment out your feedback and questions below.