Multiple choice

Which of the following are reserved words in C? a) int b) main c) getch d) float e) long

  1. a, b, c, d

  2. a, b, c, e

  3. a, b, d, e

  4. b, c, d, e

  5. a, b, c, d, e

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

a) int, b) main, d) float, e) long are reserved words in C.c) getch is a function.