Programming MCQS - QUESTION DETAILS

What is the role of the 'static' keyword in C?
A. Define a constant
B. Declare a variable
C. Create a static function
D. Preserve variable value between function calls

'static' preserves the variable value between function calls.

Similar Questions