boolean b = true;
b++;
System.out.println(b);
Answers
Answered by
1
Answer:
it would give an error
Explanation:
because boolean can't be incremented....
Similar questions