Predict the output of following
#include<stdio.h>
int main()
{
    int fun(int);
    int i = fun(6);
    printf("%d\n", ++i);
    return 0;
}
int fun(int i)
{
   return (i--);
}


Posted on by