Kizspy | Question: 22
(Choose 1 answer)
FUOVERFLOW
#include <stdio.h>
What is the output when the sample code below is executed?
int main() { int i = 10;
do {
printf("%d ", i);
i -= 2;
} while (i >= 1);
return 0;
}
A. 108642
Β. 10 8 64 20
C. 1086420-2-4
D. 1098765432