ASSIGNMENT by Fasih Dawood Roll # 1612118: Code of Swapping
ASSIGNMENT by Fasih Dawood Roll # 1612118: Code of Swapping
Roll # 1612118
CODE OF SWAPPING:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication3
class Program
int a = 12, b = 4;
a = a ^ b;
b = a ^ b;
a = a ^ b;
Console.ReadLine();
}
}