#define add(x, y) x + y int main(void) { float x = 10.0; float y = 20.0; float avg = add(x, y) / 2; // se expandează la: x + y / 2 ... return 0; }