Which one is used for moving blocks of binary data that are of arbitrary size and position in memory?

Options
- strncpy()
- memcpy()
- memmove()
- strcpy()
- memset()


CORRECT ANSWER : memmove()

Discussion Board
Functions in C

strncpy()- Copies the first num characters of source to destination

- memcpy function copies n characters from the object pointed to by s2 into the object pointed to by s1

Aparna 07-5-2013 07:52 AM

Write your comments

 
   
 
 

Enter the code shown above:
 
(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement