Computer Science, asked by anujsrivastava999, 9 months ago

What is the shorthand expression for given java expression? x=x + ++x; ​

Answers

Answered by Oreki
4

\textsf{\large Given Expression}

    \texttt{x = x + ++x;}

\textsf{\large Shorthand Expression}

    \texttt{x += ++x;}

Similar questions