-
Comment on the output of the following C code.
#include <stdio.h>
int main()
{
int n = 151;
int **ptr -= &&n;
}
-
- Garbage value
- Compilation Error
- 151
- You cannot apply any arithmetic operand to a pointer
- We don’t have address of an address operator
Correct Option: E
We don’t have address of an address operator