C Programming to print Hello World | quicklearn

in #c6 years ago

A simple c-program to display "Hello World!" on the screen. It is often known as the first programming in c language. WAP to print "Hello World!"
Best software to practice c-programming:- Turbo C/C++:- https://goo.gl/7QxTU2
Codeblocks:- https://goo.gl/YiWMR6

hello-world.jpg

Program to display "Hello World!":-

#include <stdio.h>

main( )

{

printf("Hello World!");
return 0;

}

Output of the Program:-

Hello World |----------Output

How "Hello, World!" program works:-

  1. The #include <stdio.h> is a pre-processor command. This command tells compiler to include the contents of stdio.h
    (standard input and output) file in the program.
  2. The stdio.h file contains functions such as scanf() and print() to take input and display output respectively.
  3. If you use printf() function without writing #include <stdio.h>, the program will not be compiled.
  4. The execution of a C program starts from the main() function.
  5. The printf() is a library function to send formatted output to the screen. In this program, the printf() displays Hello,
    World! text on the screen.
  6. The return 0; statement is the "Exit status" of the program. In simple terms, program ends with this statement.
Sort:  

Congratulations @quicklearn! You received a personal award!

Happy Birthday! - You are on the Steem blockchain for 1 year!

You can view your badges on your Steem Board and compare to others on the Steem Ranking

Vote for @Steemitboard as a witness to get one more award and increased upvotes!