what are Operators and explain with an example?
What is size of null class?
Is c++ a good first language to learn?
Can create new c++ operators?
Can c++ do everything c can?
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 "map" in STL?
Explain the advantages of using friend classes.
What does obj stand for?
What is namespace & why it is used in c++?
Differentiate between structure and class in c++.
declare an array of structure where the members of the structure are integer variable float variable integer array char variable access all elements of the structure using dot operator and this pointer operator
What is c++ and its uses?