Consider the following C program:
void f(int,int);
int d =1;
void main ()
{
int a = 2;
static int b =3;
f(a,b); d++;
printf ("%d",d);
}
void f (int a, int b)
{
d =a+b ;
a++;
b++;
}
Find the output produced by above code.