What would the following code do:x=y=7?
Answers
Answered by
4
Answer:
x=7;
y=7
Explanation:
compiler will assing y as 7 and then x as y which has value as 7
so xbecomes 7
y becomes 7
Answered by
2
The compiler will assign y as 7 and then x as y which has value as 7 so finally x and y becomes 7.
Hope you have received your answer
Mark it as brainlist!!!!
Similar questions