Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. Which of the following are an external variable?

        int func (int a)
        {
            int b;
            return b;
        }
        int main()
        {
            int c;
            func (c);
        }
        int d;

  2. A.
    a
    B.
    b
    C.
    c
    D.
    d

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    None.


Be The First To Comment