MCQOPTIONS
Saved Bookmarks
| 1. |
Comment on the output of this C code? int main() { int a = 10; int **c -= &&a; } |
| A. | You cannot apply any arithmetic operand to a pointer. |
| B. | We don t have address of an address operator |
| C. | Both (a) and (b) |
| D. | None of the mentioned. |
| Answer» C. Both (a) and (b) | |