C
c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*put 18 chars in there and you overflowed some memory or did something weird to the compiler */
#include <stdio.h>
int main() {
char a[10];
gets(a);
printf("You entered: %s", a);
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run