Is dev c++ a good compiler?
No Answer is Posted For this Question
Be the First to Post Answer
What does floor mean in c++?
How to defines the function in c++?
Definition of class?
In a class, there is a reference or pointer of an object of another class embedded, and the memory is either allocated or assigned to the new object created for this class. In the constructor, parameters are passed to initialize the data members and the embedded object reference to get inialized. What measures or design change should be advised for proper destruction and avioding memory leaks, getting pointers dangling for the embedded object memory allocation? Please suggest.
How would you use qsort() function to sort an array of structures?
What is ctime c++?
What do you mean by early binding?
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 pointer to member?
What is the best c++ compiler?
Why should we use null or zero in a program?
Explain what are single and multiple inheritances in c++?