/** * main.c file * Author: * rest of header */ #include <iostream.h> #include "swap.h" void main(void) { int x = 2, y = 4; swap(x, y); cout << endl<< x << " and "<< y<< endl; }