Math, asked by neeluastha1, 9 months ago

write the output-: int c= 'a'+14; System.out.println(c)

Answers

Answered by sswaraj04
1

Answer:

'a' is a character encoded by ascii encoding

and has unique integer value for every character

integer value of a is 97

c =97+14 =111

so, output

111

Step-by-step explanation:

Hope it helps :-)

Similar questions