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