Is arr and &arr are same expression for an array?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Which of the Standard C++ casts can be used to perform a ?safe? downcast: a) reinterpret_cast b) dynamic_cast c) static_cast d) const_cast

2 Answers   Quark,


Define a constructor?

0 Answers  


How do you add an element to a set in c++?

0 Answers  


What is the use of endl in c++ give an example?

0 Answers  


Is c++ pass by reference or value?

0 Answers  






What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?

0 Answers  


What is the benefit of encapsulation?

0 Answers  


What are c++ tokens?

0 Answers  


What can c++ be used for?

0 Answers  


Difference between pointer to constant vs. Pointer constant

0 Answers  


What are the new features that iso/ansi c++ has added to original c++ specifications?

0 Answers  


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

2 Answers   Quark,


Categories