What is the output of following.
public static void main(String[] args) {
final int b=3;
byte c=b/2;
System.out.println("c="+c);
}
Reveal answer
Fill a bubble to check yourself
What is the output of following.
public static void main(String[] args) {
final int b=3;
byte c=b/2;
System.out.println("c="+c);
}