volatile int a = 7; int test(int c) { return c+a; } volatile int b = 9; int main(void) { return test(b) * 2; }