Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. Which of the following does not initialize ptr to null (assuming variable declaration of a as int a=0)?
  2. A.
    int *ptr = &a;
    B.
    int *ptr = &a "“ &a;
    C.
    int *ptr = a "“ a;
    D.
    All of the mentioned

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    None.


Be The First To Comment