What is the difference between passing by reference and passing a reference?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me what are static member functions?
Why are pointers not used in c++?
why all c++ program must have default constructor?
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 an Iterator class?
Can you write a function similar to printf()?
What are the advantage of using register variables?
What are proxy objects?
simple c++ program for "abcde123ba" convert "ab321edcba" with out using string
Explain the scope resolution operator?
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
What is implicit pointer in c++?