Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

Give the output of the following code: int a = 10; int b = 20; String s = Integer.toString(a); String t = Integer.toString(b); System.out.println((s+t));

int a = 10; int b = 20;
String s = Integer.toString(a);
String t = Integer.toString(b);
System.out.println((s+t));
 
PREVIOUS NEXT
Tagged: #Give #output #int #int #String #String
ADD COMMENT
Topic
Name
4+9 =