Computer Science, asked by khushibiswas22092008, 3 days ago

Write a program in C++ to print your name and your friend's name in different lines.​

Answers

Answered by kinjalsingh11111
0

Explanation:

#include <iostream>

using namespace std;

int main()

{

cout << "\n\n Print a welcome text in a separate line :\n";

cout << "----------------------------------------------\n";

cout << " Welcome to \n" ;

cout << " w3resource.com "<<endl ;

}

Similar questions