public static void main (string []args) {
int =15;
System.out.println(i++) ;
System.out.println (i--);
}
Answers
Answered by
0
Answer:
15
16
Explanation:
I++ is postincrement so value will directly assigned that is 15.
after that I value will be 16
i-- is post decrement so the value remain same that is 16
Similar questions
English,
1 month ago
Computer Science,
1 month ago
Social Sciences,
2 months ago
Hindi,
2 months ago
Social Sciences,
8 months ago