Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. The output of the code below is

        void
    m(int k)
        {
            printf("hi");
        }
        void m(double k)
        {
            printf("hello");
        }
        void main()
        {
            m(3);
        }


  2. A.
    hi
    B.
    hello
    C.
    Compile time error
    D.
    Nothing

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    None.


Be The First To Comment