Multiple choice technology programming languages

Types of Storage Class Variables

  1. Automatic

  2. Global

  3. Static

  4. External

Reveal answer Fill a bubble to check yourself
A,C,D Correct answer
Explanation

Storage classes in C are auto (default for local variables, stored on stack), static (retains value between calls, stored in data segment), extern (variables defined in another file), and register (stored in CPU registers). 'Global' is not a storage class - global variables use extern or static storage classes.