NO, your function does not behave the same as memset
. Your function sets a pointer to NULL and memset
sets the values of the data to the value supplied.
Different things altogether.
3
solved behavior of memset
NO, your function does not behave the same as memset
. Your function sets a pointer to NULL and memset
sets the values of the data to the value supplied.
Different things altogether.
3
solved behavior of memset