System.out.println function syntax in C++
As larsmans already pointed out, java has overloads on the operator +. So you can concat strings with integer. This is also possible in C++ but not out of the box for all types. You could use a templated functions like this. But I would recommend to take a look at boost::format. I guess this library … Read more