If you run the following code, the console will output: LATE_
#include <iostream>
#include <string>
int main()
{
std::cout << std::string("PLATE_" + 1);
return 0;
}
The question is why ?
It's the same with char(1) or is there a connection here ?