#include int adder(int a, int b) { return a + b; } int main() { int x = 1, y = 3; printf("adder(%i, %i) = %i\n", x, y, adder(x, y)); }