What is the exit function in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me difference between constant pointer and pointer to a constant.
Can we use this pointer inside static member function?
what is c++
How can virtual functions in c++ be implemented?
What are the advantages of C++ programming compared to C programming?
What is Pure Virtual Function? Why and when it is used ?
What is the use of volatile keyword in c++? Give an example.
How do you write a function that can reverse a linked-list?
Write a c++ code that will calculate the roots of a quadratic equation a2+ bx+c=0 Hint: d = sqrt (b2-4ac), and the roots are: x1 = (€“b + d)/2a and x2 = (€“b €“ d)/2a (use sqrt function from cmath.h )?
What is a pure virtual function? Why is it represented as = 0...how is the internal implementation for the same
1.what is the difference between software & package &application.
Why do we use iterators?