Which compiler does turbo c++ use?
No Answer is Posted For this Question
Be the First to Post Answer
What are the uses of static class data?
What is a container class?
What is the best c c++ compiler for windows?
What does asterisk mean in 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 )?
How many characters are recognized by ANSI C++?
What are shallow and deep copies?
What is the copy-and-swap idiom?
What is the difference between #define debug 0 and #undef debug?
How is data hiding achieved in c++?
Can a built-in function be recursive?
What are the advantage of using register variables?