I am learning C++ and I want to know what is more efficient for debugging;
Is std::cout << "Test\n"; more efficient than std::cout << "Test" << std::endl?
What I am trying to say here is, is "<string>\n" more efficent then <string> << std::end;?