What is the output of the following code?
int main()
{
int i=10;
do
{
printf("%d ", i);
i++;
}while(i= 8);
return 0;
}

Posted on by