Q. 61 Consider the following C program.
# include <stdio.h>intf1(void);intf2(void);intf3(void);intx = 10;intmain(){intx = 1;x += f1() + f2() + f3() + f2();pirntf("%d", x);return0;}intf1(){intx = 25;x++;returnx;}intf2( ){staticintx = 50;x++;returnx;}intf3( ){x *= 10;returnx;}
The output of the program is_______.
(A) 230
(B) 131
(C) 231
(D) 330
Answer: (A)
Explanation:












