Vidyalelo
C Programming · Q85

Pointer

Programming · C Programming · question 85

Q85

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

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board