What are the escape characters in the C programming language?
Common escape characters used in the C language include:
- newline character
- tabulation character
- carriage return
- warning notification
- backspace
- backslash
- single quotation marks.
- quotation marks
- Null character
- vertical tabulation character
- new page marker
- Question mark
- Octal escape character
- Hexadecimal escape character represented as \xhh.
These escape characters can be used in strings to represent special characters or control characters.