What is linked list in c++?
Live example for static function?
Can we make copy constructor private in c++?
wrong statement about c++ a)code removably b)encapsulation of data and code c)program easy maintenance d)program runs faster
What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number
What is the best c++ book?
What are the static members and static member functions?
What do you mean by ‘void’ return type?
What are default parameters? How are they evaluated in c++ function?
What is the basic difference between C and C++?
Can we inherit constructor in c++?
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\"; } };
In java a final class is a class that cannot be derived. How can you make a similar class in C++