Use My Notes's profile

Hello World Program in C

Hello World Program in C
In this tutorial, we will study the Hello World Program in C with a brief explanation in the basic program in c.

#include <stdio.h>
int main( ) {
    printf ("Hello World");
    return 0;
}
In this we explain the Structure of the Program like -
Header File: #include<stdio.h>
Main Function: int main ()
output to be displayed on the screen: printf ( “Hello World” );
Return type: return 0; and
Curly Braces: { }

Hello World Program in C
Published:

Owner

Hello World Program in C

Published: