Why is it then that this type is used consistent when talking about conceptual size (like the size of an array or a file size)? I've seen it plastered all over the Internet and no-one has ever said anything against this kind of use...
[source lang="cpp"]# include <stdio.h>int main(int argc, char *argv[]){ size_t fsize = /* return the size of a previously opened file */; return 0;}[/source]
Can anyone clarify the use of such a type?
Edited by BinaryPhysics, 09 August 2012 - 07:52 AM.






