How to implement merge sort in C Smit Joshi #include<stdio.h> int main ( ) { int a [ 5 ] = { 1 , 3 , 5 , 7 , 8 } , n1 = 5 , b [ 3 ] = { 2 , 4 , 6 } , n2 = 3 , c [ 8 ] , i ,... Read More