Podcast
Questions and Answers
What is the default initial value of an automatic integral variable?
What is the default initial value of an automatic integral variable?
Which storage class allows variables to retain their value between multiple function calls?
Which storage class allows variables to retain their value between multiple function calls?
What is a limitation of using the register keyword in C?
What is a limitation of using the register keyword in C?
In C, where is the visibility of a static global variable restricted to?
In C, where is the visibility of a static global variable restricted to?
Signup and view all the answers
What does the 'extern' storage class indicate to the compiler?
What does the 'extern' storage class indicate to the compiler?
Signup and view all the answers
What happens when you attempt to dereference a register variable in C?
What happens when you attempt to dereference a register variable in C?
Signup and view all the answers
How many times can an external variable be initialized in C?
How many times can an external variable be initialized in C?
Signup and view all the answers
Which type of variables have faster access time than automatic variables?
Which type of variables have faster access time than automatic variables?
Signup and view all the answers
'static' keyword in C is used to define which type of variables?
'static' keyword in C is used to define which type of variables?
Signup and view all the answers
In C, what can't be done to a static variable once it's declared?
In C, what can't be done to a static variable once it's declared?
Signup and view all the answers