Multiple choice

Among the following, which escape sequence, does not have any specific meaning?

  1. 't'

  2. 'a'

  3. 'b'

  4. 'c'

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Escape sequences in C start with a backslash. Common ones include \t (tab), \a (alert), and \b (backspace). There is no standard escape sequence \c.