Tagged Questions
10
votes
9answers
3k views
Cross platform format string for variables of type size_t?
On a cross platform c/c++ project (Win32, Linux, OSX), I need to use the *printf functions to print some variables of type size_t. In some environments size_t's are 8 bytes and on others they are 4. ...
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);
...