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

We don’t have address of an address operator



Your comments will be displayed only after manual approval.