What will be the output of the following program?
public class DemoOnOperators
{
public static void main(String[] args)
{
int i, j, k, l = 0;
k = l++;
j = ++k;
i = j++;
System.out.println(i);
}
}
Answers
Answered by
0
sorry can't understand your question........
Similar questions