#include <stdio.h> int main() { int k = 0; do { k++; printf("Executed in while loop\n"); } while (k < 5); }
5
Previous Question Next Question
Your comments will be displayed only after manual approval.