Friday 13 May 2016

C# coding

How to swap two numbers without using a temporary variable Using Simple Coding in c#


Include <stdio.h>
Int main ()
{
  Int x = 10, y = 5;

  // Code to swap 'x' and 'y'
  x = x + y;  // x now becomes 15
  y = x - y;  // y becomes 10
  x = x - y;  // x becomes 5

  printf("After Swapping: x = %d, y = %d", x, y);

  Return 0;
}

Try This coding



No comments:

Post a Comment