0
output?
int y=3, x=5; ++x -- y
1 ответ
+ 3
No command was given to print output, so there's no output. If you include a statement for printing, then Mukesh has the answer.
(Edit)
You forgot the semicolon after `++x` and `--y`, so that code wouldn't even run until you fix that.