I'm trying to use back slash in C++ in a string like this :
HWND hwnd = FindWindowA(NULL, "C:ExampleApp.exe");
So for this example I would get these errors/warnings :"unknown escape sequence: 'E'" "unknown escape sequence: 'A'" .
Since I need to type in the exact name of the window , is there any way to avoid using back slashes or stop the compiler from interpreting them as "escape sequences" ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…