int a = 1; int b = 2; int c; int foo(int x, int y) { int z; z = x + y; return z; } int main() { c = foo(a, b); }