what is VOID?
No Answer is Posted For this Question
Be the First to Post Answer
What does h mean in maths?
What c++ is used for?
Why use of template is better than a base class?
What do the header files usually contains?
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);
Explain the concept of memory leak?
What do you mean by static variables?
Is java easier than c++?
What is searching?
Write about the stack unwinding?
How many types of casting are there in C++? When is a dynamic cast,static_cast,reinterpret cast used?
How to access a variable of the structure?