State the value of n and ch.
char c = 'A';
int n= c + 2;
char ch = (char) n:
Answers
Answered by
1
Answer:
c=65
n=67
ch ="67"
mark as brainliest
Answered by
4
Answer:
C
Explanation:
n='A'+2
=65+2 (since ascii code of A is 65)
=67
ch=C (since ascii code of C is 67)
Similar questions