Question:- Write a program to print your details.
#include<stdio.h>
#include<conio.h>
void main( )
{
clrscr( );
printf( "SIMS");
printf("\nBCA 1st semester");
printf("\nAnubhav");
getch( );
}
Output:-
SIMS
BCA 1 st semester
Anubhav
#include<stdio.h>
#include<conio.h>
Comments
Post a Comment