adspace
Answer Posted / Dipal Singh Rana
"Storage qualifiers are used to specify the properties of a variable's memory allocation in C++. They include:
1. auto: The compiler determines the type of the variable
2. register: Stores the variable in a CPU register (discussed above)
3. static: Static variables maintain their values between function calls and have internal linkage
4. extern: Declares a global variable outside of any function"
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers