#include<stdio.h>
#include<conio.h>
int main ()
{
clrscr();
int i=10;
do
{
printf("%d", i);
i++;
}
while(i<=5); 
return 0;
}
Can you tell the output.

Posted on by