7 ms·
The issue I have with it is not evident in your code but add another printf after the while and it becomes slightly more problematic: int i = 3; while (i--
by privacyfornow 10y ago
The issue I have with it is not evident in your code but add another printf after the while and it becomes slightly more problematic:
int i = 3;
while (i--) {
printf("%d, ", i); // What does this print?
}
printf("%d, ", i);