Which is not a storage class 1)struct
2)typedef
Answers
Answered by
1
Answer: Struct
Explanation:
A "struct" doesn't allocate storage, so a storage class can't be applied to it. It's more like a programmer-defined type. A storage declaration (i.e.: a variable) can have a storage class applied to it. That variable can be declared to be of whatever types are available.
Similar questions