Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. The output of the code below is?

        void main()

        {

            int x = 0;

            if (x == 0)

                printf("hi");

            else

               printf("how are u");

                printf("hello");

        }

  2. A.
    hi
    B.
    how are you
    C.
    hello
    D.
    hihello

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    none


Be The First To Comment