What will be the output of the following expression if x = 5 initially? 5 *= ++x;
Answers
Answered by
3
Question:-
Write the output of the following code.
Solution:-
Given,
x=5
5*++x(x becomes 6)
=5*6
=30.
Output:-
30
Answered by
0
Answer:
30
Explanation:
Similar questions