6 lines
75 B
C
6 lines
75 B
C
/* Write past the end. */
|
|
|
|
void do_nasty(char *ptr) {
|
|
ptr[10] = 'n';
|
|
}
|