What will be the output of the following code?
int a=0, b=10, c=40;
a= - -b + c++ + b + --C;
System.out.println("a= "+a+ “C= "+c);
System.out.println("b= "+b);
Answers
Answered by
0
Answer:
#JAVA
Explanation:
*considering the latest version of java*
there will be 2 errors
both at printin statement.
Similar questions