r = 8.3; r := 8.3; r == 8.3;. 8.3 -> r;
printf(8.3000); printf(6*r,4); printf(r:6:4); printf("%6.4f", r);
main() { float x; double c = 1.0;
x*x = 2*c; }
A constant cannot change a value The left side of the = can only contain a (single) variable Variable x is not well defined The right side of = cannot contain expressions
main() { double x; double C = 1.0;
x = C + 1.0; x = 2; x = x + 3.0; printf("%4.1f", x); }
7.0 5.0 3.0 1.0
1.5 16 16.5 1
first + then * then (..) first * then + then (..) first (..) then * then + first (..) then + then *
4.0 1.5 14 9.0