Question.5
A developer converts a digit character to its numeric value:
char c = '7'; int val = c - '0'; printf("%d", val);
What is the output?
Select Answer
7
55
0
Undefined — char arithmetic is not allowed