string - " escape sequence in C? -
what escape sequence ' " ' in c? in other words, how can ask while-statement search occurance of ' " '?
in character constant, don't need escape "
character; can use '"'
.
in string literal, need escape "
character since it's delimiter; prefixing backslash ("\""
).
note can escape "
character in character constant ('\"'
); it's not necessary.
Comments
Post a Comment