Change the function definition for myint so that xyzfunc uses the same memory locations for myint as in the calling program.

a) void xyzfunc (∫ myint);

b) void xyzfunc (int &myint);

c) void xyzfunc (int * &myint);

d) void xyzfunc (∫ &myint);