cwe_676.c 137 Bytes Edit 1 2 3 4 5 6 7 8 9 10 #include <stdio.h> #include <string.h> int main () { char str1[]="Hello World!"; char str2[40]; strcpy (str2,str1); return 0; }