Answer:
Following code are:
int *temp; //declaration of variable
// perform swapping
temp = xp;
xp = yp;
yp = temp;
Step-by-step explanation:
we declare an integer data type pointer variable "*temp" then perform swapping between them.
The variables "xp" and "yp" are already declared and these variables are performing swapping among three.