What is c++ in english?
No Answer is Posted For this Question
Be the First to Post Answer
What is a .lib file in c++?
What are features of c++?
Define a constructor - what it is and how it might be called (2 methods)?
What is slicing?
difference between macro and function?
What information can an exception contain?
What is searching? Explain linear and binary search.
Can a function take variable length arguments, if yes, how?
What is virtual methods?
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 are the popular tools used to detect memory leaks in c++
wap to accept 10 numbers & display the number of odd and even numbers??