#include <stdio.h> void main() { fun(); fun(); } void fun() { static int R = 10; R++; printf("%d ", R); }
11 12
Previous Question Next Question
Your comments will be displayed only after manual approval.