#include <stdio.h>
int main( )
{
int a = 3, b = 7, c = 4;
double x = b++ * (b - a - 1) / (--c);
printf("%lf",x);
}
How does this output 9 ?, I thought of it as doing the bracket part first which is (7-3-1)/3 = 1 * 8 = 8




Posted 15 March 2015 - 03:24 AM
