MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> double p; int main() { printf("%g n",p); return 0; } |
| A. | 0.000000 |
| B. | Garbage value |
| C. | Depend on compiler |
| D. | 0 |
| E. | None of these |
| Answer» E. None of these | |