Home » Technical Questions » Programming

How many times i value is checked in the below code? #include int main() { int i = 0; do { i++; printf( "In while loopn" ); } while (i < 3); }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!