Why are pointers not used in c++?
What is the default width for ouputting a long integer using the insertion operator?
What is Name Decoration?
What is virtual constructor paradigm?
write the programme that convert a interger to biniry number
What is the difference between inline functions and macros?
why v use c++ even we have microprocessor
What is the full form of india?
const char * char * const What is the differnce between the above two?
What is a unnitialised pointer?
What are the strengths of C++?
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
sizeof- is it functioning statically or dynamically?