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