The following program fragment
int i = 5;
do {putchar (i + 100); printf ("%d", i--);}
while (i);
results in the printing of
1
i5h4g3f2e1
2
i4h3g2fle0
3
an error message
4
none of the above
The following program fragment
int i = 5;
do {putchar (i + 100); printf ("%d", i--);}
while (i);
results in the printing of