Sorry! Posting Assignment is allowed only for commercial accounts.
What will be the output of the following Java program? class variable_scope { public static void main(String args[]) { int x; x = 5; { int y = 6; System.out.print(x + " " + y); } System.out.println(x + " " + y); } }
#includestdio.hint main(){ int i=1; if(i--) printf("Hi"); else printf("Bye"); return 0;}
#includestudio.hint main(){ int var = 010; printf("%d",var);}