|
I can see that there are no semicolons in lines 27 and 29;
if + is to be a char then you need single quotes around them (lines 37 and 39 '+' '-');
and for lines 41 and 42 you have things backwards
floor returns a value, therefore you have to assing value.mag to the leftof it like so:
value.mag=floor ( value.initial );
same with line 42
value.fract = value.initial - value.mag;
doing so made it compile fine for me, hope that helps!
__________________
On and on....
|