write a basic c++ program
no spam , it is not available in net
Answers
Answered by
2
Question:-
Write a basic C++ program.
Program:-
As you told to write a basic program, I am writing a program to print "Welcome" on the screen.
Here the program comes.
#include <iostream.h>
#include <conio.h>
int main()
{
clrscr();
cout<<"Welcome.";
getch();
return 0;
}
Answered by
2
Answer:
Basic c++ program
Explanation:
#include <iostream>
using namespace std;
int main()
{
cout<<"ABCDEFG";
return 0;
}
Similar questions