what out put does assignment operator gives ?
Answers
Answered by
0
Hi
Assignment operator returns the calculated value of right hand side expression.
for example:
x = 5 + 10;
right hand side expression will return 15 which will be stored in variable z
Similar questions