Write a corrected statement in c++ so that the statement
will work properly. if (x = y) x = 2*z;
Answer Posted / kannan
if(x==y)
printf("x=2*z");
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h
Explain stack & heap objects?
What is basic if statement syntax?
write asingle linked list which read from two list & the do the following 1 sort the prime & nonprime num (prime should be less tn nonprime) 2 each node has a prime num followd by nonprime 3 add a new node into its sutable plce 4 erase the most three duplicated non prime num 5 find the least duplicated prime num
How do I exit turbo c++?
Explain what are mutator methods in c++?
What is the output of the following program? Why?
What is the use of typedef?
What are references in c++? What is a local reference?
Is string an object in c++?
What are pointers used for c++?
On throwing an exception by the animal constructor in p = new animalq, can memory leak occur?
Why do we use string in c++?
Why c++ is not a pure oop language?
Please explain class & object in c++?