You are on page 1of 1

1.

main()

{
int i=_l_abc(10);
printf("%d\n",--i);
}
int _l_abc(int i)
{
return(i++);
}

a)9

b)10

c)

You might also like