1.

Write a program in c++ to display two freedom fighters name in different lines using single cout.

Answer»

ANSWER:

#include

#include

void main()

{

CLRSCR();

cout<<"OUTPUT PROGRAM\n\n\n";

cout<<"\tMaths     = 90\n"<<"\tPhysics   = 77\n"<<"\tChemistry = 69\n";

GETCH();

}



Discussion

No Comment Found