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
Post a Comment