Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. What is the output of this C code?


        void main()

        {

            int k;

            for (k = -3; k < -5; k++)

                printf("Hello");

        }

  2. A.
    Hello
    B.
    Infinite hello
    C.
    Run time error
    D.
    Nothing

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    none


Be The First To Comment