Programming Tutorials

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



Comment Added by : Rasmi Ranjan Nayak

Comment Added at : 2010-01-12 04:40:18

Comment on Tutorial : Using memset(), memcpy(), and memmove() in C By Emiley J
It's Very Nice. Particularly:
DO use memmove() instead of memcpy() in case you're dealing with overlapping memory regions.

DON'T try to use memset() to initialize type int, float, or double arrays to any value other than 0.


View Tutorial