C Interview Questions

C Interview Questions For Recent graduates and Experienced professionals to gain the knowledge for the C Interview. 1: swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are the values x&y?