0
Comparing two arrays using pointers
Can anyone tell me how to compare two arrays using pointers in c language
1 Resposta
0
First of all,You have to declare arrays like *pa = &a[0]; than if there's string array,so you have to go for ASCII summation OR if there's integer string,that's very simple to compare using if. For increment of array,use *(pa + I);.
Thank You.