Which of the following is not an escape sequence?
a) \a
b) \b
c) \c
d) none of these
c) \c
Computer Science & Information Technology
You might also like to view...
Paint Brush is a(n) ________
A) drawing object B) artistic effect C) picture effect D) picture style
Computer Science & Information Technology
Which of the following loop headers will arrange for the loop body to execute exactly 10 times?
a) for (int i = 1; i < 10; ++i) b) for (int i = 0; i <= 10; ++i) c) for (int i = –5; i < 5; ++i) d) for (int i = 2; i < 20; ++i)
Computer Science & Information Technology