What is the output of the following program? # include <stdio.h> void fun(int x) {if (x > 0){fun(x - 1);printf("%d," x);fun(x - 1);}} int main( ) { fun(3); return 0; }