What is the importance of mutable keyword?
No Answer is Posted For this Question
Be the First to Post Answer
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 Difference between "printf" and "sprintf"?
7 Answers iSoft, PentaWare, TCS,
Do you know about C++ 11 standard?
0 Answers Agilent, ZS Associates,
What is a character in c++?
What is the equivalent of Pascal's Real a) unsigned int b) float c) char
Name the implicit member functions of a class.
What is the full name of logo?
When do we use copy constructors?
Write a corrected statement in c++ so that the statement will work properly. x + y=z;
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
Write about the various sections of the executable image?
What is an undefined reference/unresolved external symbol error and how do I fix it?