program in c++ language to print name,class and school name
Answers
Answered by
0
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
char A,B,C;
cout<<"Enter your name:";
cin>>A
cout<<"Enter your class:";
cin>>B
cout<<"Enter your school name";
cin>>C
getch();
}
#include<conio.h>
void main()
{
clrscr();
char A,B,C;
cout<<"Enter your name:";
cin>>A
cout<<"Enter your class:";
cin>>B
cout<<"Enter your school name";
cin>>C
getch();
}
Similar questions