# What gets printed when the following program is compiled and run. Select the one correct answer.
class test {
public static void main(String args[]) {
int i,j,k,l=0;
k = l++;
j = ++k;
i = j++;
System.out.println(i);
}
}
a. 0
b. 1
c. 2
d. 3
Porque a resposte é 1, isto é, letra b?
