C++ deprecated conversion from string constant to ‘char*’
This is an error message you see whenever you have a situation like the following: Why? Well, C and C++ differ in the type of the string literal. In C the type is array of char and in C++ it is constant array of char. In any case, you are not allowed to change the characters of … Read more