What of the following is the output of the under given code?
public void sum(){ int a=10,b=2,c=3; if(b>a)&&(c>b){ c++; System.out.println(c=+c); } else{ c--; System.out.println(c=+c); } }
Reveal answer
Fill a bubble to check yourself
What of the following is the output of the under given code?
public void sum(){ int a=10,b=2,c=3; if(b>a)&&(c>b){ c++; System.out.println(c=+c); } else{ c--; System.out.println(c=+c); } }