MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? double i; int main() { printf("%g n",i); return 0; } |
| A. | 0.000000 |
| B. | Garbage value |
| C. | Depends on the compiler |
| Answer» C. Depends on the compiler | |