Should a constructor be public or private?
No Answer is Posted For this Question
Be the First to Post Answer
What is a 'pure' virtual function and what's its use?
What is #include iostream in c++?
How can I improve my c++ skills?
List down the guideline that should be followed while using friend function.
How many standards of c++ are there?
What you know about structures in C++?
0 Answers Agilent, ZS Associates,
What is the purpose of templates in c++?
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
Explain about Garbage Collector?
What are friend classes? What are advantages of using friend classes?
What is the difference between *p++ and (*p)++ ?
What is the function to call to turn an ascii string into a long?