Earlier quoted context omitted.
Would a person struggling with a stack overflow actually google "stack overflow", though? Surely only a very fresh programmer would need to google it, and only if he/she knew what the concept was. But here's what an infinite recursion in a C program prints if I run it: Segmentation fault: 11 Well, that's C for you. If I try Ruby: test.rb:2: stack level too deep (SystemStackError) Ok, still not the same nomenclature.…
I remember having seen "stack overflow" when I naïvely tried to allocate a 5MB array on the stack in Visual C++ 2010.
#include
int main(void) {
char x[8388608];
printf("%ld\n", sizeof(x));
return 0;
}