Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. What is the output of this C code?


        int main()

        {

            int i = 0, j = 0;

            for (i; i < 2; i++){

                for (j = 0; j < 3; j++){

                    printf("1\n");

                    break;

                }

                printf("2\n");

            }

            printf("after loop\n");

        }

  2. A.
    1

         2

         after loop

    B.
    1

         after loop

    C.
    1

         2

         1

         2

         after loop

    D.
    1

         1

         2

         after loop

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    none


Be The First To Comment