Define a pdb file.
No Answer is Posted For this Question
Be the First to Post Answer
Why do we need constructors in c++?
Generally variables are stored in heap memory. When he variables are created in stack?
Explain Text Manipulation Routines?
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 about Virtual Destructor?
Differentiate between the message and method in c++?
If all is successful, what should main return a) 0 b) 1 c) void
What is a c++ class?
What is the full form of india?
Describe the process of creation and destruction of a derived class object?
How is new() different from malloc()?
check whether a no is prime or not.