What is the output of this program?
- class Output {
- public static void main(String args[])
- {
- int a = 1;
- int b = 2;
- int c;
- int d;
- c = ++b;
- d = a++;
- c++;
- b++;
- ++a;
- System.out.println(a + " " + b + " " + c);
- }
Select one:
a. 2 3 4
b. 3 2 4
c. 3 4 4
d. 3 2 3
Comments
Leave a comment