Computer Science, asked by shobhitgour27, 6 months ago

3. Give the output of the following:.
if x=5;
X=X++;
System.out.println(x);
X=++X;
System.out.println(x);
X=X++ + ++X +--X;
System.out.println(x);​

Answers

Answered by mohammadfaizbahraizh
1

Answer:

5,7,23 will be the output

Similar questions