What will be the output of the following Java code?
Posted: Wed Jul 13, 2022 7:45 pm
class increment { public static void main(String args[]) { int g = 3; System.out.print(++g * 8); } }
a) 32
b) 33
c) 24
d) 25
a) 32
b) 33
c) 24
d) 25