My code works as follow:
I get x = -24 which it's okCode:#define h 12
int x = 0;
unsigned int y = 7
x += ( 5 - y) * h
but if I replace the define statement for this:
I dont get the expected result. I get -3276800. I would expect -25 whitch is a singed int result too.Code:#define h 12.5f
any idea?

