Computer Science, asked by sailajalovely, 1 year ago

program in c++ language to print name,class and school name

Answers

Answered by annarejoy
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();
}
Similar questions