system.out.println('C'+2); what is the output
Answers
Answered by
0
Answer:
C2
Explanation:
"C" is string and 2 is integer . so the result is
C2
Answered by
0
Answer:
System.out.println('C'+2);
Output:
C2
Similar questions