Computer Science, asked by rabinagrawal943, 8 months ago

find the output of the following:- charc='A'; int m=5; system.out.println((char) (c+m)); system.out.println(c+m);​

Answers

Answered by Anonymous
6

OUTPUT:-

F

EXPLANATION:-

A + 5 = 65 + 5 = 70

ASCII (70) = F

Similar questions