#include void f(int depth){ printf("%d\n", depth); f(depth+1); } int main(int argc, char** argv){ f(0); return 0; }