Menu BAR

FEEL FREE TO ASK ANY PROGRAM and please mention any error if you find it

13 Jan 2013

PROGRAM IN C FOR STARTERS

#include<stdio.h>           //  standard input/ output
#include<conio.h>         //  console input/output
void main( )                   //   program begins from main( ) function
{
 clrscr( ) ;                       //   clear the screen

printf("WELCOME TO C PROGRAMMING") ;

getch( ) ;
}

No comments:

Post a Comment