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 default width for ouputting a long integer using the insertion operator?

0 Answers  


What is Name Decoration?

2 Answers   Lucent,


What is virtual constructor paradigm?

5 Answers   HCL, HP,


write the programme that convert a interger to biniry number

1 Answers   Amazon,


What is the difference between inline functions and macros?

5 Answers  


why v use c++ even we have microprocessor

2 Answers   CybAge,


What is the full form of india?

0 Answers  


const char * char * const What is the differnce between the above two?

11 Answers   TCS,


What is a unnitialised pointer?

0 Answers  


What are the strengths of C++?

1 Answers  


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


sizeof- is it functioning statically or dynamically?

2 Answers  


Categories