#include <stdio.h> void fun(int k); int main() { fun(2); } void fun(int k) { if (k > 7) return ; printf("%d ", k); return fun((k++, k)); }
None of these
Previous Question Next Question
Your comments will be displayed only after manual approval.