what will be the output of the following Java 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. printing (a + " " + b + " " + c);
}
}
Answers
Answered by
0
Answer:
3(unvalid numbers)
Explanation:
please mark me as brain list
Similar questions