Hello World Program in C

Description: The first C program to print the Hello World in the output screen.

Implementation

Output:

Explanation

This is the compiler statement to include the standard input and output header files in the program.

The starting point of the C program and int represents the return type of the program.

This is the function to print the string which is given in the double quotes. In this program,Hello world is a string and printf function display the same in the output screen.

The return value of the program specified using return statement.After the successful execution of the program,the value 0 returns here.

C Hello World Program without printf