size_t size = sizeof(int);
printf("%d\n", size);
int i;
for (i = 0; i < size; i++) {
printf("%d ", i);
}
The above code (using gcc) outptus
4
0 1 2 3
size_t size = sizeof(int);
printf("%d\n", size);
int i;
for (i = -1; i < size; i++) {
printf("%d ", i);
}
This code (i is initialized to -1) outputs only 4 and nothing in the loop.
size_t size = sizeof(int);
printf("%d\n", size);
int i;
for (i = -1; i < (int) size; i++) {
printf("%d ", i);
}
Adding a cast makes the code run fine again. The output is
4
-1 0 1 2 3
What's going wrong in the second code? Why doesn't printf go wrong anywhere?