Computer Science, asked by topposushanti3, 9 months ago

write a program in c++ to display five names ?​

Answers

Answered by shugamingyt99
1

Answer:

#include<iostream.h>

#include<conio.h>

void main ()

{

clrscr();

cout<<"Name 1"<<endl;

cout<<"Name 2"<<endl;

cout<<"Name 3"<<endl;

cout<<"Name 4"<<endl;

cout<<"Name 5"<<endl;

getch();

}

Explanation:

Similar questions