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
1
Answer:
5,7,23 will be the output
Similar questions