How many times i value is checked in the below code?
#include <stdio.h> int main() { int i = 0; do { i++; printf( "In while loopn" ); } while (i < 3); }
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
Be The First To Comment