What will be the output of the following code?public class Short { public static void main(String[] args) { int a,b,c; a=1; b=2; c=a+b; System.out.println("C="+c); } }
Reveal answer
Fill a bubble to check yourself
What will be the output of the following code?public class Short { public static void main(String[] args) { int a,b,c; a=1; b=2; c=a+b; System.out.println("C="+c); } }