Ask to write virtual base class code?
Is it possible for the objects to read and write themselves?
What are 2 ways of exporting a function from a dll?
What is auto used for in c++?
List the issue that the auto_ptr object handles?
Explain the difference between abstract class and interface in c++?
what is data abstraction in C++?
How can you find the nodes with repetetive data in a linked list?
program in c++ to input digits and print in words
What is the difference between the functions rand(), random(), srand() and randomize()?
What is a string example?
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 is a binary search tree? Write an algo and tell complexity?