As far as I know, the right way to put quotation mark in the string in C/C++ is to use a slash.
For example, compare these strings
char str1[] = "Hello \"world\""'; ---> Hello "world"
char str2[] = "Hello ""world"""; ---> Hello world
Double quotation mark basicaly ends the current string and starts a new one, thus it has
no effect on the output.



Aleksey



_______________________________________________ xmlsec mailing list [EMAIL PROTECTED] http://www.aleksey.com/mailman/listinfo/xmlsec

Reply via email to