MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? #include #include #define square(x) x*x int main() { int i; i = 27/square(3); printf("%d",i); return 0; } |
| A. | 9 |
| B. | Compilation error |
| C. | 3 |
| D. | 27 |
| Answer» E. | |