I might encounter when I compile with code::blocks one C++ file.
1 | char *AppTitle="Windows-1"; |
You won’t get that error.
1 | warning: deprecated conversion from string constant to 'char*' |
You need to make an explicit typecast:
1 | char *AppTitle=((char *)"Windows-1"); |