What is a tuple c++?
No Answer is Posted For this Question
Be the First to Post Answer
Why is main an int?
What are the various situations where a copy constructor is invoked?
Difference between a copy constructor and an assignment operator.
founder of c++
7 Answers Microtek, TCS, TeleCommand,
how many trys can we write in one class
What are punctuators in c++?
What is a container class?
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 polymorphism & list its types in c++?
What is using namespace std in c++?
What are the basics concepts of OOPS?
What are manipulators in c++ with example?