Examveda
Examveda

Comment on the output of the following C code.
#include <stdio.h>
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. We have address of an address operator

D. None of the mentioned

Answer: Option B


This Question Belongs to C Program >> Pointer

Join The Discussion

Related Questions on Pointer