MCQOPTIONS
Saved Bookmarks
| 1. |
What will be output of the following "c" code? Note: 32 bit compiler #include int main(){ float **(*ptr)[4]=(float **(*)[4])0; ptr+=5; printf("%d %d",ptr,sizeof ptr); return 0; } |
| A. | 0 2 |
| B. | 160 8 |
| C. | 40 2 |
| D. | 80 4 |
| E. | Compilation error |
| Answer» E. Compilation error | |