How to Print Hello World! on console

How to Print Hello World! on console

.


    1. You must include the necessary library file.The printf() function needs <stdio.h>.
    2. Every C program must have the main() function.
    3. The printf() function prints the text on the screen and the \n it moves the cursor to starting of next line . 
    4. Statements and commands are written within the body of function, as indicated by a of braces {} sysmbols.
    5. Compile the program. If there are errors, verify and correct them.Compile the program again until there is no error.
    Output