MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following program code?#includevoid main(){ int i = 10; void *p = &i; printf("%f", *(float *)p);} |
| A. | Error |
| B. | 10 |
| C. | 0.000000 |
| D. | None of these. |
| Answer» D. None of these. | |