Hi,
How can I compare a character with backslash ?
when I do
if (c == '\')
then it gives error invalid character constant
I cant even declare string with this value like
String str = "\";
this gives error string literal is not properly closed by double qoute
thanks in advance
B