Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. What is the output of this C code?


        int main()

        {

           for (int i = 0;i < 1; i++)

                printf("In for loop\n");

        }

  2. A.
    Compile time error
    B.
    In for loop
    C.
    Depends on the standard compiler implements
    D.
    Depends on the compiler

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    none


Be The First To Comment