What is a class definition?
No Answer is Posted For this Question
Be the First to Post Answer
Which is best ide for c++?
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 the array and initializing arrays in c++?
What is the last index number in an array of 100 characters a) 100 b) 99 c) 101
What is the use of volatile variable?
In what situations do you have to use initialization list rather than assignment in constructors?
What is ios class in c++?
Can comments be longer than one line?
What is an Object/Instance?
what are difference between c and c++?
Is it possible to provide special behavior for one instance of a template but not for other instances?
string somestring ; Which of the following choices will convert a standard C++ string object "somestring" to a C string? a) Copy.somestring () ; b) somestring.c_str () c) &somestring [1] d) std::cstring (somestring) e) (char *) somestring