First Program In C - Learn Engineering

All the news and updates relevant to Engineering. You can also Write a post here

Breaking

Saturday, May 16, 2020

First Program In C

Learn C programming

Hello Everyone,

Gladly welcome you All.

Basically, all the Programming Languages starts with Hello World program.

Here, is the code,



#include<stdio.h> 
int main() 
{      
      printf("Hello World");
     return 0; 
}

Result:

Hello World


No comments:

Post a Comment