MCQOPTIONS
Saved Bookmarks
| 1. |
Determine Output: #include #define a 10 void main() { #define a 50 printf("%d", a); } |
| A. | 50 |
| B. | 10 |
| C. | Compiler Error |
| D. | None of These |
| Answer» B. 10 | |