A simple C program to display "Hello, World!" on the screen. Since, it's a very simple program, it is often used to illustrate the syntax of a programming language.

Program to Display "Hello, World!"


//Program written by Nimiya Joseph

#include <stdio.h>

int main()
{

printf("Hello, World!"); // printf() displays the string inside quotation

return 0;

}

Comments

Popular posts from this blog

Algorithm to display "n" natural numbers #c

Algorithm to display the sum of n natural numbers #c

Algorithm for Sum of two numbers