Comment on the output of the following C code.
#include <stdio.h>
int main()
{
int a = 10;
int **c -= &&a;
}
#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
Join The Discussion