How many storage classes are available in C++?



How many storage classes are available in C++?..

Answer / hrpynux@gmail.com

There are primarily four storage classes in C, viz. automatic, register, static, and external.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is pointer with example?

0 Answers  


what is multi-threading in C++?

0 Answers  


Which bit wise operator is suitable for turning off a particular bit in a number?

0 Answers  


What is #include c++?

0 Answers  


What is #include cstdlib in c++?

0 Answers  






Which software is used to run c++ program?

0 Answers  


What is null and void pointer?

0 Answers  


int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30

2 Answers   AIG, Quark,


What is size of null class?

6 Answers   HP,


Explain the uses of static class data?

0 Answers  


Explain what data encapsulation is in c++?

0 Answers  


Are iterators pointers?

0 Answers  


Categories