Home / General Knowledge / Testing sawaal :: Discussion

Discussion :: Testing sawaal

  1.  What is the output of this C code? 

            #include <stdio.h>
            void m()
            {
                printf("hi");
            }
            void main()
            {
                m();
            }

  2. A.
    hi
    B.
    Run time error
    C.
    None
    D.
    Varies

    View Answer

    Workspace

    Answer : Option A

    Explanation :



Be The First To Comment