MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? #include #define x 3 int main() { int i; i = x*x*x; printf("%d",i); return 0; } |
| A. | 27 |
| B. | x is not declared |
| C. | No output |
| D. | Garbage value |
| Answer» B. x is not declared | |