View Single Post
Old Feb 4th, 2007, 9:19 PM   #3
Thiengineer
Newbie
 
Join Date: Feb 2007
Posts: 2
Rep Power: 0 Thiengineer is on a distinguished road
This is what I have so far...am I on the right track? Please help!! You help is greatly appreciated!

void intpswap(int *xp, int *yp)
{
int t = *xp;
*xp = *yp;
*yp = t;
}
Thiengineer is offline   Reply With Quote