HOW C WORKS

1.     # include <stdio.h>

2.         void main ()

3.         {

4.         printf(“hello word”);

5.         }

6.  

Output:hello word

1.       # include<stdio.h>

This is used for standard input and output operations. This is the main library which include the meaning of main method

And other common methods.

2.       void

This is a return type.

3.       main

Main is a main method which runs first in program.

The code initialization will done from this method.

4.       printf

This method is used to show data entered in quotes.