|
|
|
|
|
by privacyfornow
3481 days 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);
|
|