Difference between overloaded functions and overridden functions
No Answer is Posted For this Question
Be the First to Post Answer
When we use Abstract Class and when we use Interface?where we will implement in real time?
How we can differentiate between a pre and post increment operators during overloading?
char *ch = "abcde"; char c[4]; how to copy 'ch' to 'c'?
You run a shell on unix system. How would you tell which shell are you running?
What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
what does the following statement mean? int (*a)[4]
What do you mean by C++ access specifiers ?
What do you mean by function overriding & function overloading in c++?
Write about the access privileges in c++ and also mention about its default access level?
What do the header files usually contains?
What is the most common mistake on c++ and oo projects?
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