#define DOLLARS float /* typedef float DOLLARS; */ main() { DOLLARS amount = 100.00, interest = 0.07 * amount; { /* new block */ float DOLLARS; DOLLARS = amount + interest; printf("DOLLARS = %.2f\n", DOLLARS); } }