In C, what will happen if I supply a signed integer especifically a negative integer as the 3rd argument to the memcpy function?
Example:
memcpy(destBuf, source, -100*sizeof(source))
Will the result of -100*sizeof(source)
be interpreted by memcpy as unsigned?
Thanks!