Exercise (DO IT NOW)
What is the output?
int x;
x = 7;
while( x >= 0 ) {
printf("%d\n", x);
x = x - 2;
}
Previous slide
Next slide
Back to first slide
View graphic version