Why are pointers not used in c++?


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

Post New Answer

More C++ General Interview Questions

What is the difference between method and message?

5 Answers   HP,


How important is c++?

0 Answers  


What are the various situations where a copy constructor is invoked?

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,


Why do we use templates?

0 Answers  






What c++ is used for?

0 Answers  


What are inline functions?

2 Answers   Fidelity, Verizon,


What are destructors?

0 Answers  


How does a C++ structure differ from a C++ class?

0 Answers   NIIT,


What is difference between rand () and srand ()?

0 Answers  


What is a c++ class?

0 Answers  


How the keyword struct is different from the keyword class in c++?

0 Answers  


Categories