Tagged Questions
1
vote
2answers
168 views
Strange behaviour with for loop and size_t
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);
...