Why is main an int?
No Answer is Posted For this Question
Be the First to Post Answer
Live example for static function?
What is the c++ code?
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 the full form of c++?
Should I learn c or c++ or c#?
Which is best ide for c++?
What is command line arguments in C++? What are its uses? Where we have to use this?
What is an explicit constructor?
What is difference between c++ and c ++ 14?
Define a pointer to a data member of the type pointer to pointer?
What is split a string in c++?
what is the use of void main() in C++ language?