Is c++ a float?
No Answer is Posted For this Question
Be the First to Post Answer
Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;
What is the difference between equal to (==) and assignment operator (=)?
What is encapsulation in c++ with example?
When can you tell that a memory leak will occur?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
If all is successful, what should main return a) 0 b) 1 c) void
How can I learn c++ easily?
write a program that takes 5 digit no and calculate 2 power that no and print it.
Incase of a function declaration, what is extern means?
What are the different types of Storage classes?
Explain stack & heap objects?
Write about the retrieval of n number of objects during the process of delete[]p?