Which one is the reserved word in C language?
2021
Which one is the reserved word in C language?
- A.
automatic
- B.
integer
- C.
constant
- D.
volatile
Attempted by 618 students.
Show answer & explanation
Correct answer: D
In C programming, reserved words are keywords with special meaning. Volatile is a storage class specifier keyword used to indicate that a variable may change unexpectedly. Automatic, integer, and constant are not reserved keywords in standard C syntax.