Computer Science, asked by yeduguruvishnuvardha, 2 months ago

Find the Output
1 #include<stdio.h>
2
3 int fun(int x) {
4 if (x > 2) {
5
fun (--x);
6 } else if (x > 1) {
7
fun(fun(--));
8 }
9 printf("%d", x);
10 return x;
11 ]
12
13 int main() {
14 fun(4);
15
return 0;
16 ]
Tyne here to search
o
TDI
-​

Answers

Answered by nandan5546
0

Answer:

idk what will come here sorry plz mark me as Brainliest

Similar questions