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