First C Program

First C Program


Program to display “Hello world!!!”

/* This is my first program in C..*/
#include <stdio.h>
int main()
{
    printf("Hello world!!!\n");
    return 0;
}

Output

Hello World!!!

Even though the program is simple as it is the first program in c to make you familiar with the programs written in C programming.

It illustrates several important features of C programming language.