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