Show the declaration for a static member variable.
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 )?
How do I download c++?
What are arrays c++?
How many lines of code you have written for a single program?
throw Can constructors exceptions?
write a C++ programming :if the no is between 32 to 50 it will be odd.
How to give an alternate name to a namespace?
What is the return value of the insertion operator?
What is rtti in c++?
How many types of classes are there in c++?
Write a program to find the reverse Fibonacci series starting from N.
Explain differences between new() and delete()?