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

#include<stdio.h>int main(){int i = 0;do{if(i%3==0) continue;printf("%d", i);i++;} while(i<=20);return 0;}

#include<stdio.h>int main (){int i=7,j=8;do{printf ("%d\t%d",i,j);i++;j--;}while(i>=7 &&j<=8);return 0;}

How many times will "sookshmas "be printed.Int count = 0;do{System.out.println("sookshmas");count++;}while(count < 10);