Flux rss

Swapping two variables without using a temp variable

Bookmark Bookmark & Share
Last update on November 21, 2008 08:08 AM by jak58
Published by jak58

Swapping two variables without using a temp variable




Using pointers


#include <stdio.h>
void change(int *,int*);

int main ()
{
  int a=2,b=5;
  printf("Before : a=%d,b=%d\n",a,b);

  change(&a,&b);

  printf("After : a=%d,b=%d\n",a,b);
  return 0;
}

void change(int *a,int *b){

  *a += *b;
  *b = *a-*b;
  *a = *a-*b;
}


Results
Before : a=2,b=5
After : a=5,b=2

Making use of a Macro


#include <stdio.h>
#define SWAP(x,y) x ^= y, y ^= x, x ^= y

int main ()
{
  int a=2,b=5;
  printf("Before : a=%d,b=%d\n",a,b);

  SWAP(a,b);

  printf("After : a=%d,b=%d\n",a,b);
  return 0;
}

Results
Before : a=2,b=5
After : a=5,b=2

Note that:
The name of the macro or variables may be changed to your convenience.
Make 2 partition without reinstall??? Hello,pilz tell me how to change 1 partition become 2 partition without reinstall a new operating or reformat it??? en.kioskea.net/forum/affich-88673-make-2-partition-without-reinstall
How do i install the sims 2 without buying it Hello, i have downloaded the sims 2 free time on my vista computer and i have put it on a disk. it says i need to install the sims 2, but the thing is it is illegal and without installing the sims 2 i cant open the game or play it. how do i download... en.kioskea.net/forum/affich-87630-how-do-i-install-the-sims-2-without-buying-it
How to install the sims 2 seasons Hello, i am trying to install the sims 2 seasons expansion pack but it says i need the oringinal disc but can i install the sims 2 without the disc is it impossible because i been trying my best to install it and i dont know where to go to get the... en.kioskea.net/forum/affich-51651-how-to-install-the-sims-2-seasons
Call of duty 2 (COD2) BugsCall of duty 2 (COD2) Bugs Call of duty 2 bugs on VISTA Patch Installation Direct X 10 configurations Multiplayer Mode You have problems running COD 2 on Vista? This is because this FPS game was released before vista So we will... en.kioskea.net/faq/sujet-1903-call-of-duty-2-cod2-bugs
[VBA/VB6] My Documents + Environment Variables[VBA/VB6] My Documents + Environment Variables With VBA With VB6 Environment Functions Windows Variables Getting started As displayed in Windows Explorer, the My Documents folder appears to be in the root, but it is not the case. It... en.kioskea.net/faq/sujet-951-vba-vb6-my-documents-environment-variables
Sorting a table without using the sort functionSorting a table without using the sort function Getting started Pseudocode The coding Getting started First of all we initialize a variable $ max with the 1st value of table. Then we will make a loop until the table still contains... en.kioskea.net/faq/sujet-901-sorting-a-table-without-using-the-sort-function
HOW TO CONNECT 2 PC WITHOUT USING IPADDRESSHello, i want to connect two pc using a LAN cable.and from one pc i need to access the files stored on the other pc.but i should achieve this without the usage of IPADDRESS.please tell me if there is any way to do this. en.kioskea.net/forum/affich-55419-how-to-connect-2-pc-without-using-ipaddress
USB 1.1 CONVERTER TO USB 2.0 (Solved)Hello, I have an old laptop with a USB 1.1 port. I would like to convert it to 2.0 so I could make most of my external drives that uses USB 2.0, esp. my HDD player. I've researched and found out that there are cardbus adapters but my laptop has only 1... en.kioskea.net/forum/affich-75207-usb-1-1-converter-to-usb-2-0
Sims 2 InstallationHello, I need help with installing Sims 2 Seasons on my mac (I hope this is the right place). When I put the disc into my computer, it is not detected - nothing comes up on my desktop or finder (I have checked settings and its supposed to come up in... en.kioskea.net/forum/affich-36141-sims-2-installation
Download Rumblepad™ 2 Vibration Feedback GamepadRumblepad ™ 2 Vibration Feedback Gamepad is an equipment which is part of the range equipment of game of the family Logitech. Of a simple design, this joystick resembles so many others but distinguishes itself by its workability. Here is the pilot... en.kioskea.net/telecharger/telecharger-948-rumblepada-2-vibration-feedback-gamepad
Download 2 Pic2 pic is a program of style of drawing which you can use to edit your pictures (photographs or drawings). Functions offered in programs are distinctly more practical than that offered by other programs such as Photoshop or PaintShop Pro, however... en.kioskea.net/telecharger/telecharger-617-2-pic
Download Torrent SwapperTorrent Swapper is a program which will enable you to benefit from P2P file-sharing via BitTorrent. Thanks to this software, to download files (whatever the type is) can be done simply and effectively. Torrent Swapper offers various features. Thanks... en.kioskea.net/telecharger/telecharger-3579-torrent-swapper
Environment variablesEnvironment variables An environment variable is a dynamic value loaded into the memory that can be used by several processes operating simultaneously. On most operating systems, the location of some libraries or of the main system executables may... en.kioskea.net/contents/systemes/variables-environnement.php3
PS/2 connectorPS/2 connector The PS/2 connector (mini-DIN6 format) is mainly used to connect computers to keyboards and mice. Pins Pin number Function 1 Clock 2 Ground 3 Data 4 Ground (or not... en.kioskea.net/contents/elec/connecteur-prise-ps2.php3