What is const in c++?


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

Post New Answer

More C++ General Interview Questions

Which of the following operator cannot be overloaded?

2 Answers   TCL,


What is the type of 'this' pointer?

0 Answers  


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


Is c++ faster than c?

0 Answers  


How did c++ get its name?

0 Answers  






If all is successful, what should main return a) 0 b) 1 c) void

0 Answers  


what is the size of a class which contains no member variables but has two objects??? is it 1 or 2??

4 Answers  


Does c++ have a hash table?

0 Answers  


program in c++ to input digits and print in words

1 Answers   Microsoft,


What is the full form of dos?

0 Answers  


Does improper inheritance have a potential to wreck a project?

0 Answers  


Explain what you mean by a pointer.

0 Answers   TCS,


Categories