Example: memcpy

The following example copies the string in s1 to s2.

     #include <string.h>
     char s1[] = "Sample string";
     char s2[40];
/* +1 to include NULL terminator */
     memcpy(s2, s1, strlen(s1) + 1);      lr_output_message("s1=%s s2=%s", s1, s2);
Example: Output:

s1=Sample string s2=Sample string