TomoLink
Mediumtcs-nqt

What is the output? void f(int n) { if(n==0) return; f(n-1); printf("%d ", n); } f(4);