14 lines
143 B
C

#include <stdio.h>
int main(void)
{
int i = 10;
while (i>0)
{
printf ("i = %d\n", i);
i--;
}
return 0;
}