MCQOPTIONS
Saved Bookmarks
| 1. |
Comment on the output of the following C code. #include <stdio.h> int main() { int n = 151; int **ptr -= &&n; } |
| A. | Garbage value |
| B. | Compilation Error |
| C. | 151 |
| D. | You cannot apply any arithmetic operand to a pointer |
| E. | We don t have address of an address operator |
| Answer» F. | |