Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. What is the output of this C code?


        void main()

        {

            int i = 0;

            if (i == 0)

            {

                printf("Hello");

                continue;

            }

        }

  2. A.
    Hello is printed infinite times
    B.
    Hello
    C.
    varies
    D.
    Compile time error

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    none


Be The First To Comment