#include <stdio.h> int main() { Function(1); } void Function(int k) { if (k > 5) exit(0); printf("%d\n", k); return Function(k++); }
Stack overflow
Previous Question Next Question
Your comments will be displayed only after manual approval.