int foo(int x, int y) { int total; total=x+y; return 0; } int main() { int a=10; int b=20; foo(a, b); return 0; }