What is the significant difference between memcpy()
and strncpy()
? I ask this because we can easily alter strncpy()
to copy any type of da
Take for example these numbers in your array:
brr[2]={512,44};
The least significant byte of the first number brr[0]
is 0
(512
is 0x200
) which would causes 1) strncpy
to stop copying. strncpy
does not copy characters that follow a null
character.
1) To be pedantic (see comments), this holds provided that the implementation has sizeof (int) > 1
.
When memory block requires to be copied memcpy is useful and data in the for of string strncpy is meaningful because of the natural advantage of '\0' terminated string. Otherwise both perform same pattern of copy after execution.
The simple difference is that memcpy()
can copy data with embedded null characters (aka the string terminator in C-style strings) whereas strncpy()
will only copy the string to the maximum of either the number of characters given or the position of the first null character (and pad the rest of the strings with 0s).
In other words, they do have two very different use cases.