Categories
c

Hello World Program In C

Here is the hello world program which is show at starting of every programming class of every programming language.

#include “stdio.h”
void main()
{
printf(“Hello world!\n”);
}