write a program to print "HELLO" and "WELCOME" in two separate lines on the screen in C++
Answers
Answered by
1
Answer:
#include<iostream>
using namespace std;
int main()
{
cout<<"HELLO";
cout<<"WELCOME";
return (0);
}
Explanation:
i wrote this program in Dev C++
Similar questions
English,
2 months ago
Math,
2 months ago
Physics,
5 months ago
Political Science,
11 months ago
Science,
11 months ago