Can constructor be private in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Define a pointer to a data member of the type pointer to pointer?
What's the order in which the objects in an array are destructed?
What is design pattern?
How do you instruct your compiler to print the contents of the intermediate file showing the effects of the preprocessor?
How do you initialize a class member, class x { const int i; };
What is the size of integer variable?
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
Write a single instruction that will find the remainder of integral division when x is divided by y. Have the answer stored in z.
What is math h in c++?
If we want that any wildcard characters in the command line arguments should be appropriately expanded, are we required to make any special provision? If yes, which?
Explain how we implement exception handling in c++?
How do you establish a has-a relationship?