long sum(long *xp, long *yp) { return *xp + *yp; } long callsum(long a, long b) { long x = a; long y = b; return sum(&x, &y); }