0 votes
in C Plus Plus by

What is a Storage Class? Mention the Storage Classes in C++.

1 Answer

0 votes
by
Storage class determines the life or scope of symbols such as variable or functions.

C++ supports the following storage classes:

Auto

Static

Extern

Register

Mutable
...