Leave a Reply 1

Your email address will not be published. Required fields are marked *


God

God

Given the code fragment:
int a = 0;
a++;
System.out.printIn(a++);
System.out.printIn(a);
What is the result?

A