How is static data member similar to a global variable?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Is there structure in c++?

0 Answers  


What is meant by iomanip in c++?

0 Answers  


Describe new operator and delete operator?

0 Answers  


What is the difference between #import and #include in c++?

0 Answers  


What are enumerations?

0 Answers  






What are the basic data types used in c++?

0 Answers  


Explain operator overloading.

0 Answers  


Which operator can not be overloaded in C++?

1 Answers  


What is polymorphism in c++? Explain with an example?

0 Answers  


What is purpose of new operator?

0 Answers  


Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.

1 Answers  


What does extern mean in a function declaration in c++?

0 Answers  


Categories