Computer Science, asked by vijay4574, 1 year ago

write a program in c++ to print your name

Answers

Answered by marpitasrao
5

HEADER FILES:

#include<iostream.h>

#include<conio.h>

MAIN PROGRAM:

void main()

{ cout<<"Your Name";

 getch();

}    //U can now add ur name inside the double quotes//

Answered by anchal2002
3
# include <iostream.h>
int main ( )
{
cout<< I am Anchal";
return 0;
}
Similar questions