Sail E0 Webinar
Question
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);

    }

Options:
A .  2
B .  3
C .  4
D .  1
Answer: Option B


none



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

More Questions on This Topic :


Latest Videos

Latest Test Papers