Let's Overflow! void function(char *str) { char buffer[16]; strcpy(buffer, str); } int main(void) { /* length of str = 27 bytes */ char *s = "I am greater than 16 bytes"; function(s); }