What is const pointer and const reference?
No Answer is Posted For this Question
Be the First to Post Answer
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
What is the keyword auto for?
Which software is used for c++ programming?
Why is c++ still popular?
Is c++ pass by reference or value?
What are the different operators in C++?
What are the 3 levels of programming languages?
What are the operators in c++?
Define a pdb file.
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
When should you use multiple inheritance?
Is map ordered c++?