AD1

Saturday 27 May 2017

Reverse Two Arrays Of The Same Size

write a C program to reverse two array elements of the same size 
as example if we have int a[]={1,2,3,4},int b[]={5,6,7,8}
after reversing we would have int a[]={5,6,7,8},int b[]={1,2,3,4}