Computer Science, asked by adeeb31122005, 4 months ago

State the value of n and ch when char c=’B’; int n=c+1; char ch=(char)n;

Answers

Answered by babitatanwar454020
3

Answer:

state the value of n and CH.

char c='A';

int n=c+1;

char ch=(char)n;

The value of n and ch. is

n = 66

ch = B

Similar questions