Computer Science, asked by Anonymous, 5 months ago

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

Answers

Answered by debasisindian2
0

Answer:

#include<conio.h>

#include<iostream.h>

void main()

{

clrscr();

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

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

getch();

}

Similar questions