I'm trying to pass through several functions a string with a path but the every '\\' I put in the path becomes a single '\' in the inner function and I can't use it this way.
Is there a way to preserve the "\\" when entering a new function?
I'm using C++ on windows.
thanks :)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
Be prepared for some obfuscated answer. The
Just to provide another example, suppose you'd like to have some
will obviously not compile, and you will have to escape the
|
|||||||||
|
|
In C++0x you will have a raw string literal:
Where everything between "( and )" is part of the string -- no escaping necessary. In the current standard you can't achieve what you want. |
|||
|
|