Computer Science, asked by batulkathiriya786, 5 months ago

write a program to print "HELLO" and "WELCOME" in two separate lines on the screen in C++​

Answers

Answered by harshamani2020
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