Question 28
Answer saved
Marked out of 1.00
What is the output when the sample code below is excuted?
int i=1;
while(i<=10)
{
if(i%2==1)
printf("%d",i++);
else
}
printf("%d",i--);
O a. 1
b. 121 2...(ifinite loop)
c. 1246 8 10
Od. compiler error
e. 13579
Clear my choice