[Solved] Write a program in C# which uses Iterative Binary Search algorithm to search age of the person using his / her name
I do disagree with the way you store your input but you can achieve your search with the following: String[,] arr = new string[2,4]; arr[0, 0] = “saif”; arr[0, 1] = “25”; arr[0, 2] = “ali”; arr[0, 3] = “17”; arr[1, 0] = “aakif”; arr[1, 1] = “11”; arr[1, 2] = “hassnain”; arr[1, 3] = … Read more