What does obj stand for?
No Answer is Posted For this Question
Be the First to Post Answer
How const int *ourpointer differs from int const *ourpointer?
What is c++ & why it is used?
Define macro.
What is the benefit of c++?
What is the use of volatile keyword in c++? Give an example.
founder of c++
7 Answers Microtek, TCS, TeleCommand,
What are the various situations where a copy constructor is invoked?
When is the destructor called?
What is #include iostream h in c++?
what is multi-threading in C++?
What is the full form nasa?
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