Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. The output of the code below is

        void main()
        {

            int k = m();
            printf("%d", k);
        }

        void m()
        {

            printf("hello");
        }

  2. A.
    hello 5
    B.
    Error
    C.
    Nothing
    D.
    Junk value

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    None.


Be The First To Comment