Why do we need pointers?


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

Post New Answer

More C++ General Interview Questions

How did c++ get its name?

0 Answers  


Should I learn c or c++ or c#?

0 Answers  


What is the difference between reference type and pointers.

4 Answers   HCL,


What is private, public and protected inheritance?

0 Answers  


What is the array and initializing arrays in c++?

0 Answers  






How do I use arrays in c++?

0 Answers  


structure contains int, char, float how it behaves for big endian and little endian?

1 Answers   BITS,


If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?

0 Answers  


Why iomanip is used in c++?

0 Answers  


how to swap two strings without using any third variable ?

11 Answers  


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


How to declare a pointer to an array of integers?

0 Answers  


Categories