Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. How many times i value is checked in the below code?


        int main()

        {

            int i = 0;

            do {

                i++;

                printf("in while loop\n");

            } while (i < 3);

        }

  2. A.
    2
    B.
    3
    C.
    4
    D.
    1

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    none


Be The First To Comment