Is c# written in c++?
No Answer is Posted For this Question
Be the First to Post Answer
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
is throwing exception from a constructor not a good practice ?
What is the prototype of printf function?
What are built-in functions? What is the syntax for the definition?
What is the insertion operator and what does it do?
What is ofstream c++?
what do you mean by memory management operators
How do you define/declare constants in c++?
What is c++ hash?
Explain all the C++ concepts using examples.
What is data structure in c++?
What is the use of typedef?