+ 1
Printout the output program in c++
example i input title book to program and the program ask me printout or no if yes output return Print from printer
1 Answer
+ 14
main()
{
clrscr();
//after all other coding required 4 it
cout<<"Printout or no";
cin>>c;
if(c=='Y'&&c=='y')
{
cout<<"Print from printer";
}
}