int add(int a, int b) { int c; c=a+b; return c; } int main() { int x=9, y=7, z; z=add(x,y); printf("%d\n",z); return ;