Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. Comment on the output of this C code?

    int main()
    {
    int a = 10;
    int **c -= &&a;
    }
  2. A.
    You cannot apply any arithmetic operand to a pointer.
    B.
    We don't have address of an address operator
    C.
    Both (a) and (b)
    D.
    None of the mentioned.

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    None.


Be The First To Comment