What will be the output of the following code?
void main() {
int n;
char ch;
ch = 'N';
n = ch - 'A';
printf("%d", n);
}

Posted on by