Why is c++ awesome?
No Answer is Posted For this Question
Be the First to Post Answer
Explain pass by value and pass by reference.
What is a rooted hierarchy?
Differentiate between late binding and early binding.
How to get the current position of the file pointer?
Describe private, protected and public – the differences and give examples.
Can class objects be passed as function arguments?
Describe private, protected and public?
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; }
What is class in c++ with example?
Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;
What are punctuators in c++?
How does atoi function work?