Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. The output of the code below is?


        void main()

        {

            int i = 0;

            if (i == 0)

            {

                goto label;

            }

            label: printf("Hello");

        }

  2. A.
    Nothing
    B.
    Error
    C.
    Infinite Hello
    D.
    Hello

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    none


Be The First To Comment