#define SWAP(t,a,b) \ do{ \ t c = a; \ a = b; \ b = c; \ }while(); void main() { int a=,b=; SWAP(int,a,b); }