I have an array of unsigned numbers called dataArray (in fact, in the program I am trying to figure out, they are entered as hexadecimal numbers, but I do not think this is important). I have another variable of type unsigned char called c.
What does it do?
unsigned int dataArray[]={1,2,3,4,5};
unsigned char c;
x=c^ (dataArray)[i];
I read that the carriage is a reference to c, but what does it mean when the array name is in parentheses? It seems that x is just set to the (i-1) th element in the dataArray, but under what conditions is it not?
Thanks.
Msj
source
share