(no title)
privacyfornow | 9 years ago
int i = 3;
while (i--) {
printf("%d, ", i); // What does this print?
}
printf("%d, ", i);privacyfornow | 9 years ago
int i = 3;
while (i--) {
printf("%d, ", i); // What does this print?
}
printf("%d, ", i);
No comments yet.