What is the output of following.
public static void main(String[] args) {
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) {
int b=3;
byte c=b/2;
System.out.println("&c="+ &c);
}