Why do we use classes in programming?
No Answer is Posted For this Question
Be the First to Post Answer
what is the diff b/n c and c++ a. dynamic scoping b. nested switching c. declaration of variables in any code block d. separation of compilation and linking
Do vectors start at 0?
What is a static member?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
Write about the use of the virtual destructor?
What is a smart pointer?
Explain shallow copy?
What do c++ programmers do?
How do you declare A pointer to function which receives an int pointer and returns a float pointer
What is the latest c++ version?
What is binary object model?
What is the difference between an external iterator and an internal iterator? Describe an advantage of an external iterator?