http://cwe.mitre.org/data/definitions/908.html
The following code intends to concatenate a string to a variable andprint the string.
(Bad Code)
ExampleLanguage:
C
char str[20];
strcat(str, "hello world");
printf("%s", str);