Computer Science, asked by durga1550, 9 months ago

How to Create a Simple Program in C++?​

Answers

Answered by OLegion
1

Answer:

Program to print your Name.

Explanation:

Program:

#include<iostream.h>

#include<conio.h>

void main()

{

clrscr();

cout<<"My Name is Leukonov";

cout<<"Aka OLegion";

getch();

}

Output:

My name is Leukonov

Aka OLegion

Hope it helps...

Regards;

Leukonov/Olegion.

Similar questions