C for Beginners
Wednesday, 28 November 2012
C Program for print output
#include<conio.h>
#include<stdio.h>
main()
{
clrscr();
printf(" C for Education");
printf("\n Visakhapatnam");
getch();
}
Out put:
C for Education
Visakhapatnam
Welcome to C
#include<conio.h>
#include<stdio.h>
main()
{
clrscr();
printf("Welcome to C");
getch();
}
Out put:
Welcome to C
Newer Posts
Home
Subscribe to:
Posts (Atom)