2) Write a simple C++ program to display the following output.
Print new line in c++
I love c++ programing
Answers
Answered by
1
#include <iostream>
int main() {
std::cout << "Print new line in c++";
std::cout <<" I love c++ programing ";
return 0;
}
Similar questions