Does C++ consider \/ as an escape character?
And does Java consider it? I am talking about forward and backslashes. Please tell. How does Java and C++ considers them differently? I mean :
in C++: this '/' works fine without escape.
in Java: this '\/' will result in '/'.
Is it correct or wrong?
Please clarify.