What is prototype in c++ with example?
What is the use of 'using' declaration in c++?
Write a recursive program to calculate factorial in c++.
What do you mean by funtion prototype?
Is sorted c++?
What are c++ manipulators?
How can I improve my c++ skills?
You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()
Difference between an inspector and a mutator
Can you explicitly call a destructor on a local variable?
write the code that display the format just like 1 2 1 3 2 1 4 3 2 1 5 4 3 2 1 6 5 4 3 2 1
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 terminating character in c++?