Why do we use iterators?
No Answer is Posted For this Question
Be the First to Post Answer
Describe functional overloading?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
What is a type library?
How can you force instantiation of a template?
Which field is used in c++?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ?
Explain the operation of overloading of an assignment operator.
Define virtual constructor.
Define a constructor - what it is and how it might be called (2 methods)?
How do you test your code?
What is abstraction c++?
What is a local variable?