Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. What is the output of code given below?


        int main()

        {

            printf("%d ", 1);

            l1:l2:

            printf("%d ", 2);

            printf("%d\n", 3);

        }

  2. A.
    Compilation error
    B.
    1   2   3
    C.
    1  2
    D.
    1  3

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    none


Be The First To Comment