I am doing programs in The C Programming Language by Kernighan and Ritchie.
I am currently at exercise 1-24 that says:
Write a program to check a C Program for rudimentary syntax errors like unbalanced parentheses, brackets and braces. Don't forget about quotes, both single and double,
escape sequences
, and comments.
I have done everything well... But I am not getting how escape sequences
would affect these parentheses, brackets and braces?
Why did they warned about escape sequences?
\"
as part of the syntax?char excerpt[] = "\"Aha!\" he said.";