Is java based off c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is function overloading in 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
What is abstraction in c++ with example?
Is there any difference between int [] a and int a [] in c++?
write a program that will produce the ff. output. "what fruit will you buy? 1)apple 2)orange 3)mango ENTER CHOICE (1,2 or 3)> HOW MANY WILL YOU BUY?> THAT WILL COST XX.XX
Is java the same as c++?
Which c++ operator cannot overload?
What do you understand by zombie objects in c++?
What is a node class?
Can a function take variable length arguments, if yes, how?
Explain pass by value and pass by reference.
what are difference between c and c++?