What is the basic of c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between method overloading and method overriding in c++?
What is a c++ class?
how to create window program in c++.please explain.
What is the difference between a "copy constructor" and an "assignment operator" in C++?
How do you add an element to a set in c++?
Is multimap sorted c++?
without if else statement can be written ah
In c++, what is the difference between method overloading and method overriding?
How to reduce a final size of executable?
What is name hiding in c++?
given unsigned int ui1=3,ui2=7; what are the outputs of a)ui1 & ui2 b)ui1 && ui2 c)ui1 | ui2 d)ui1 || ui2 i also need the justification for the answers thank you
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 )?