Search for: what is pair in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is malloc in c++?
Why c++ does not have finally?
What are the advantages of using typedef in a program?
How do I get good at c++ programming?
What are the advantages of C++ programming compared to C programming?
What is private public protected in c++?
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 polymorphism and its type in c++?
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;
Define precondition and post-condition to a member function?
What is setiosflags c++?
What is difference between array and vector in c++?