#include using namespace std; // Owen Astrachan // illustrates problems with "infinite" recursion void Recur(int depth) { cout << depth << endl; Recur(depth+1); } int main() { Recur(0); return 0; }