int test(int i) { if (i > 0) test(i); return i; } int main(int argc, char **argv) { return test(argc); }