#include <stdio.h>

void main() {
    int i = 15; 
    do {
         printf("%d", i);
         printf("ill be executed once");
    }while(i <= 5);
}

Posted on by