Q.

What will be output if you will compile and execute the following c code? #include<stdio.h>
int main(){
char c=125;
c=c+10;
printf("%d",c); return 0;
}

A. 135
B. +inf
C. -121
D. -8
Answer» C. -121
3.3k
0
Do you find this helpful?
17

Discussion

No comments yet

Related MCQs