C "Hello, World!" Program

To understand this example, you should have the knowledge of the following C programming topics:

Program to Display "Hello, World!"

#include int main() < // printf() displays the string inside quotation printf("Hello, World!"); return 0; >

Output

Hello, World! 

How "Hello, World!" program works?