Home / Questions / Write the output: char ch = 'F'; int m = ch; m=m+5; System.out.println(m + " " + ch);
Explanatory Question

Write the output:

char ch = 'F';
int m = ch;
m=m+5;
System.out.println(m + " " + ch);

👁 78 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

Answer with Explanation

Output of the above code is:


75 F
Explanation

The statement int m = ch; assigns the ASCII value of F (which is 70) to variable m. Adding 5 to m makes it 75. In the println statement, the current value of m which is 75 is printed followed by space and then value of ch which is F.