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;

            while (i < 3)

                i++;

            printf("In while loop\n");

        }

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

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    none


Be The First To Comment