I am working on a C++ program. I saw multiple lines of logs in this pattern in one of the files:
#include <iostream>
using namespace std;
int main()
{
std::cout << "First line"
" second line" << std::endl;
return 0;
}
I am not very familiar with cpp language, is this a standard way of logging and how does it work? I feel like it should give some kind of syntax error on a quick look?