Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. The output of the code below is?


        int x;

        void main()

        {

            if (x)

                printf("hi");

            else

                printf("how are u");

        }

  2. A.
    hi
    B.
    how are you
    C.
    Compile time error
    D.
    None of the mentioned

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    none


Be The First To Comment