onlinecode

“Hello World!” in C programming

“Hello World!” in C programming

A simple program C to display “Hello, World!” to run. It is a very easy and simple program, it is often used to illustrate the syntax of a programming language for run programs.

Program to Display “Hello, World!”

#include <stdio.h>
int main()
{
   // printf() displays the string inside quotation
   printf("Hello, World!");
   // Exit status
   return 0;
}

Output

Hello, World!

How “Hello, World!” in c – program works ??

Exit mobile version