The C++ program shows as:
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!" << endl; cout << "Welcome to C++ Programming" << endl;
}
which of course works, but this would be more readable:
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!" << endl;
cout << "Welcome to C++ Programming" << endl;
}
This is especially true in Codelens where you can't even see the second line without using the scroll bar
See:
