Computer Science, asked by ridhimarajesharora, 5 hours ago

2) Write a simple C++ program to display the following output.

Print new line in c++
I love c++ programing

Answers

Answered by sakshimachhar1710
1

#include <iostream>

int main() {

std::cout << "Print new line in c++";

std::cout <<" I love c++ programing ";

return 0;

}

Similar questions