How is c++ different from java?
No Answer is Posted For this Question
Be the First to Post Answer
Explain data encapsulation?
Do class declarations end with a semicolon?
Which bitwise operator is used to check whether a particular bit is on or off?
What is Namespace?
Which function cannot be overloaded c++?
Types of storage and scope of each type
What is static in c++?
Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];
what is static function
How many ways are there to initialize an int with a constant?
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 )?
Which c++ compiler is best?