int main () { int tab[] = { -7, -5, 3, -4, 1, -8 }; printf ( "%i \n", fun_f( 6, tab ) ); return 0; }
INLINE int fun_e(int arge) { static int loce = 0; loce += arge; return fun_f(loce); }