What return value must conversion operators have in their declaration?
No Answer is Posted For this Question
Be the First to Post Answer
Which is not an ANSII C++ function a) sin() b) tmpnam() c) kbhit()
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
What are destructors?
How do you find out if a linked-list has an end? (I.e. The list is not a cycle)
When there is a global variable and local variable with the same name, how will you access the global variable?
Why the usage of pointers in C++ is not recommended ?
Is c++ slower than c?
What gives the current position of the put pointer?
When to use “const” reference arguments in a function?
sir i want to study the c++ course but ino what is the qualification and the study methode please reply more details in c++
Define stacks. Provide an example where they are useful.
What do you mean by stack unwinding in c++?