InterviewSolution
Saved Bookmarks
| 1. |
Write a program in c++ to display two freedom fighters name in different lines using single cout. |
|
Answer» #include #include void main() { CLRSCR(); cout<<"OUTPUT PROGRAM\n\n\n"; cout<<"\tMaths = 90\n"<<"\tPhysics = 77\n"<<"\tChemistry = 69\n"; GETCH(); } |
|