Computer Science, asked by angelsinha054, 8 months ago

State the value of n and ch.
char c = 'A';
int n= c + 2;
char ch = (char) n:

Answers

Answered by Anonymous
1

Answer:

c=65

n=67

ch ="67"

mark as brainliest

Answered by Anu1612
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