8. Java Operators
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);
}
}
Pick ONE option
Answers
Answered by
0
Answer:
2(65)
java/html 36 colour grey I think this helps you pls mark me brainlist
Similar questions