How is new() different from malloc()?
No Answer is Posted For this Question
Be the First to Post Answer
What do you know about friend class and friend function?
Why iomanip is used in c++?
Difference between an inspector and a mutator
Write a program using GUI concept for the scheduling algorithms in Operating system like SJF,FCFS etc..
Define a pdb file.
What is null pointer and void pointer?
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
If there are two catch statements, one for base and one for derived, which should come first?
What are the various arithmetic operators in c++?
What are the two shift operators and what are their functions?
Friend functions can access private and protected members of a class.
What is an adaptor class or Wrapper class?