Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. Which variable has the longest scope?

        int b;
        int main()
        {
            int c;
            return 0;
        }
        int a;
  2. A.
    a
    B.
    b
    C.
    c
    D.
    Both (a) and (b)

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    None.


Be The First To Comment