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

let a,b,c be three integer numbers.write a c++ program with a function void rotate 1()such that a->b->c and c->a.

1 Answers  


If a base class declares a function to be virtual, and a derived class does not use the term virtual when overriding that class, is it still virtual when inherited by a third-generation class?

1 Answers  


What are structures and unions?

1 Answers  


What do manipulators do?

1 Answers  


Define private, protected and public access control.

1 Answers  


Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;

1 Answers  


Does c++ support multilevel and multiple inheritances?

1 Answers  


What is multithreading and what is its use?Whats are multithreading techniques used in C++?

1 Answers  


When should we use container classes instead of arrays?

1 Answers  


What are the basics concepts of OOPS?

1 Answers  


What is the use of volatile variable?

1 Answers  


What is iterator in c++?

1 Answers  


Categories