4th Street Bar Hive-Bar

Hive-Bar Powered by Hive beta-fdb5b5b

Community post

C Programming to print Hello World | quicklearn

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.
1 upvotes $0.00

Replies (1)

Review before signing

Posting as . Signing with . Keychain permission: Posting. Hive Keychain will ask you to approve this action next.


  
Technical details

Operation fingerprint: