

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> void main() { char p = 'p'; int q = (p % 10)++; printf("%d n", q); } |
A. | 10 |
B. | Compilation Error |
C. | p |
D. | Runtime Error |
E. | None of these |
Answer» C. p | |