Predict the output
#includestdio.h

int main()
{
int a=5, b, c, d;
b=++a;
c=a++;
d=++a;
printf("%d",a);
return 0;
}

Posted on by