Programming Tutorials

Comment on Tutorial - Using memset(), memcpy(), and memmove() in C By Emiley J



Comment Added by : Anderson Goulart

Comment Added at : 2010-08-24 19:24:15

Comment on Tutorial : Using memset(), memcpy(), and memmove() in C By Emiley J
To 16:
size_t is an ISO specification and must exist. Normally it is a typedef to unsigned int, but on some architectures it may be overwritten to other types, like unsigned long long. It is easier to port things to other archs.


View Tutorial