 |
Using memset(), memcpy(), and memmove() in C
The memset() Function To set all the bytes in a block of memory to a particular value, use memset(). The function prototype is void * memset(void *dest, int c, size_t count); ... DO use memmove() instead of memcpy() in case you're dealing with overlapping
www.java-samples.com |
 |