Problem:
ns1
Swap 2 values
#include <stdio.h>
main()
{
int first, second,
temp
;
first = 1;
second = 2;
temp = first;
first = second;
second = temp;
return 0;
}