Friday 22 August 2014

First program in C

Program: to print a message on console screen.

#include<stdio.h>
int main()
{
                clrscr();  // if you are using turbo C++ compiler then only use this function. not in dev C++
                printf(“ \n Welcome to Programming_Infinitum”);
                getch();
                return 0;
}

Output:

                Welcome to Programming_Infinitum

No comments:

Post a Comment