Consider this C code to swap two integers and these five statements: the cose

void swap(int *px,int *py){
*px=*px-*py;
*py=*px+*py;
*px=*py-*px;
}
statement 1: Will...