void fn() { static int i=10; printf("%d",++i); } main() { fn(); fn(); }
Answer & Explanation Option: [C]