Why the usage of pointers in C++ is not recommended ?


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

Post New Answer

More C++ General Interview Questions

class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;

1 Answers   Quark,


What are the advantages of pointers?

0 Answers  


What is c++ programming language?

0 Answers  


Please explain class & object in c++?

0 Answers  


Write about the stack unwinding?

0 Answers  






Is c++ a float?

0 Answers  


Can we declare destructor as static? Explain?

3 Answers  


If you had the following code: int x = 23; int *y; y = &x; The instruction y++; does what?

2 Answers  


Difference between a homogeneous and a heterogeneous container

0 Answers  


Can I learn c++ in a week?

0 Answers  


implement stack using stack.h headerfile functions

1 Answers   Exilant, GMG, Subex, University,


What is the difference between containment and delegation?

0 Answers  


Categories