What is dev c++ used for?
No Answer is Posted For this Question
Be the First to Post Answer
What are the two types of polymorphism?
How can you create a virtual copy constructor?
int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30
What is a driver program?
Explain stack unwinding.
What is static function and static class?
What is the use of map in c++?
What is the real purpose of class – to export data?
What is an operator in c++?
If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?
check whether a no is prime or not.
Write a program to find the reverse Fibonacci series starting from N.