Write a corrected statement in c++ so that the statement
will work properly. if (x = y) x = 2*z;
Answer Posted / rose
if(x==y)
{
x=2*z;
}
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
what are the iterator and generic algorithms.
why is c++ called oops? Explain
What size is allocated to the union variable?
Program to check whether a word is a sub-string or not of a string typed
What are the 3 levels of programming languages?
What is the extraction operator and what does it do?
What is implicit pointer in c++?
On throwing an exception by the animal constructor in p = new animalq, can memory leak occur?
Write about the stack unwinding?
Is c++ platform dependent?
How do I start a c++ project?
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
How can you quickly find the number of elements stored in a dynamic array?
Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?
Is c++ a high level language?