How to avoid changing constant values?
Answers were Sorted based on User's Feedback
What is endianness?
What is the C-style character string?
If a base class declares a function to be virtual, and a derived class does not use the term virtual when overriding that class, is it still virtual when inherited by a third-generation class?
Is c++ a software?
Describe public access specifiers?
Explain one-definition rule (odr).
What is object slicing and how can we prevent it?
Does there exist any other function which can be used to convert an integer or a float to a string?
How many lines of code you have written for a single program?
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; }
Why c++ is called oop?
Who created c++?