How many times i value is checked in the following C code?
#include int main(){ int i = 0; do { i++; printf("in while loop\n"); } while (i
#include int main(){ int i = 0; do { i++; printf("in while loop\n"); } while (i How many times i value is checked in the following C code?
#include <stdio.h>int main(){ int i = 0; do { i++; printf("in while loop\n"); } while (i Correct Answer 3
মোঃ আরিফুল ইসলাম
Feb 20, 2025