// test-complex-expressions.c int main(int argc, int argv) { int a = 2; int b = 3; int c = 4; int result = a + b * c - 1; return result; }