Explain how to initialize a const member data.


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

Post New Answer

More C++ General Interview Questions

What is near, far and huge pointers? How many bytes are occupied by them?

0 Answers  


What is c++ flowchart?

0 Answers  


int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?

11 Answers   HCL, Mphasis,


What is vectorial capacity?

0 Answers  


wap to accept 10 numbers & display the number of odd and even numbers??

1 Answers  






Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


Explain the difference between c++ and java.

0 Answers  


How would you find out if a linked-list is a cycle or not?

0 Answers  


what are the types of Member Functions?

0 Answers  


What is encapsulation in c++ with example?

0 Answers  


When should we use multiple inheritance?

0 Answers  


How does throwing and catching exceptions differ from using setjmp and longjmp?

1 Answers  


Categories