MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include main() { typedef int a; a b=2, c=8, d; d=(b*2)/2+8; printf("%d",d); } |
| A. | 10 |
| B. | 16 |
| C. | 8 |
| D. | error |
| Answer» B. 16 | |