By reading on the posts online related to size_t and ptrdiff_t, I want to confirm the following:
if the max size of an array is less than
1/2*(max number represent-able by size_t), I can safely useptrdiff_tand check the relative distances between two pointers to the same object?(Since I was talking about array, "pointers to same object" means "pointers to same array").if I want to declare a variable that can represent the offset from another pointer, I better declare it as type
ptrdiff_t?How do I output variables of type
size_tandptrdiff_tin C and C++? Is the following correct: Cross platform format string for variables of type size_t?is
uintptr_tis just another name forsize_tOR it should be used as a separate type fromsize_t?is
ssize_tandintptr_tanother names forptrdiff_tOR it has to be used differently?
I am starting to use gcc on Ubuntu. I just found out about these types when using someone else's codes.
ADDed: I do want to be able to use negative offsets. And any difference in using uintptr_t and intptr_t?
_ptrdiff_t_andssize_ttypos? – Mooing Duck Oct 31 '11 at 16:45ssize_tis a Posix type (for example, it's the return type ofreadandwrite)._ptrdiff_t_does look like a typo. – Mike Seymour Oct 31 '11 at 16:51