please dont rip this site

language ccpp cref EXAMPLES swap

/ ******************************************************************
 *
 * Purpose: Program to demonstrate the use of ^ (XOR).
 * Date:    03-Dec-96
 * Author:  M J Leslie.
 * Descrip: The contents of two variables are swapped without
 *          the use of a temorary variable  
 *
 ******************************************************************/

#include <stdio.h>

main()
{

  int    	One = 20;
  int		Two = 12;

  printf("One = %d Two = %d\n", One, Two);

  One ^= Two;
  Two ^= One;
  One ^= Two;

  printf("One = %d Two = %d\n", One, Two);
}


file: /Techref/language/ccpp/cref/EXAMPLES/swap.c, 0KB, , updated: 1997/4/21 08:52, local time: 2012/2/10 11:59,
TOP NEW HELP FIND: 
38.107.179.233:LOG IN

 ©2012 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE! / 

<A HREF="http://www.piclist.com/tecHREF/language/ccpp/cref/EXAMPLES/swap.c"> language ccpp cref EXAMPLES swap</A>

Did you find what you needed?

 
SX MASTERS: Eric Smith and Richard Ottosen's SERVID is an intellegent RS232 video terminal (4x20 character display) in one SX chip. See the write up.
 
Feel the NEED for SPEED?
Ubicom SX18 thru SX52, PIC 16c5X compatibile, 50 to
75 MIPS microcontrollers!
Now US customers can buy the Excellent SXDev from SXList.com
for $150 + $15 import fee + s&h (~ $180 total+tax in CA)

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .