1 #include <string.h> 2 3 int main(int argc, char **argv) { 4 char buf[4]; 5 char buf2[8] = "1234567"; 6 memcpy(buf, buf2, -100); 7 return 1; 8 } 9