Why does this C++ code-snippet segmentation fault? - by lorb #include <iostream> using namespace std; int recur(int x) { 1 and recur(--x); cout << x; return x; } int main() { recur(10); return 0; } Read the article