i have two array of chars of size 12 each having only 0's or 1's.
what i am trying to do is that in for loop
for(i=0;i<12;i++)
{
int a=1starray[i];
int b=2ndarray[i];
int c=a^b
}
but every time c gets 0 only. iam not getting it why.
can anybody help me out.
thank you in advance