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