Does c++ support exception handling?
No Answer is Posted For this Question
Be the First to Post Answer
How a pointer differs from a reference?
What jobs can you get with a c++ certification?
How a new element can be added or pushed in a stack?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ?
Difference between declaration and definition of a variable.
Disadvantages of c++
What is scope resolution operator in c++ with example?
Write any small program that will compile in "C" but not in "C++"?
class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list
what is the size of a class which contains no member variables but has two objects??? is it 1 or 2??
Out of fgets() and gets() which function is safe to use?
What do you mean by C++ access specifiers ?