What is auto used for in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is the disadvantage of using a macro?
What do you mean by public protected and private in c++?
What kind of jobs can I get with c++?
how can u create a doubly linked list with out using pointers?
What do you mean by early binding?
What does flush do?
What is virtual table?
Under what conditions is multiple inheritance not recommended?
What is an iterator?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
What is the difference between C and CPP?
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?