Write a corrected statement in c++ so that the statement
will work properly. x + y=z;

Answers were Sorted based on User's Feedback



Write a corrected statement in c++ so that the statement will work properly. x + y=z;..

Answer / rose

z= x+y


Is This Answer Correct ?    4 Yes 0 No

Write a corrected statement in c++ so that the statement will work properly. x + y=z;..

Answer / ravin

z=x+y;

Is This Answer Correct ?    4 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is the difference between static global and global ?

2 Answers   CA,


When does the c++ compiler create temporary variables?

0 Answers  


Is it legal in c++ to overload operator++ so that it decrements a value in your class?

0 Answers  


What is input operator in c++?

0 Answers  


What is a container class? What are the types of container classes in c++?

0 Answers  






write a C++ programming using for loop: * * * * * * * * * *

4 Answers   TCS,


Explain the difference between struct and class in terms of access modifier.

0 Answers  


What is the difference between a reference and a pointer?

0 Answers  


What will i and j equal after the code below is executed? Explain your answer.

1 Answers  


Can inline functions have a recursion? Give the reason?

3 Answers  


How the memory management in vectors are being done. What happens when the heap memory is full, and how do you handle it ?

0 Answers   Yahoo,


What do you mean by function pointer?

0 Answers  


Categories