First C Program

p00171225.c

/* Program to print "Hello World - Merry Christmas" on command line. */
 

#include <stdio.h>
int main()
{
    printf("\n\n\t Hello World - Merry Christmas \n\n");
}





** for formatting output
\n is for newline 
\t is for adding a tab space before the print of Hello World happens

Comments