Report Bug
Qus : Which keyword is used to prevent any changes in the variable within a C program?
Qus C प्रोग्राम के भीतर variable में किसी भी परिवर्तन को रोकने के लिए किस कीवर्ड का उपयोग किया जाता है?

A. immutable
B. mutable
C. const
D. volatile


Solution
C. const



Explanation
const is a keyword constant in C program



Report Bug