Which one is the reserved word in C language?
2021
Which one is the reserved word in C language?
Answer: D. volatile — 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…
- A.
automatic
- B.
integer
- C.
constant
- D.
volatile
Attempted by 1284 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.
Loading lesson…