74

Predict the output:
int main()
{
int d;
int s();
d=s();
}
s()
{
int i=0,j=i<3,k=j<2>=i;
return i++*++k-j++;
}

Related Posts