what are the iterator and generic algorithms.
No Answer is Posted For this Question
Be the First to Post Answer
plz send me National informatics center paper pattern
Is string data type in c++?
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;
What is the difference between #import and #include in c++?
Which one is better- macro or function?
What is the difference between ++ count and count ++?
What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass
How do you test your code?
What is the difference between reference and pointer?
Explain what happens when a pointer is deleted twice?
Why do we use pointers in c++?
3- Write a program to find larger and smaller of the two numbers.