int g(int o){ int j = o * 2; return j; } int f(int p){ int y = p + 2; return y - 5 + g(1); } int main(){ int a = 7; int c = f(a); }