Consider following C function int fun(int n){static int x =1;x = x - n;(x < 10) return (fun(fun(n - 1)));else return x;} What is return value of fun(7)?