The Swap Program
// Prototype for our swap function
void swap(int x, int y);
void main()
{
int FirstInt = 10;
int SecondInt = 20;
swap(FirstInt, SecondInt);
}
Is there a problem here?
Previous slide
Next slide
Back to first slide
View graphic version