I have an array declared like this
float dati[10];
I normally subscript the array like as follows
dati[2] = 5;
But i have also seen other types of substriptions like
2[dati] = 5;
and
*(dati+2) = 5;
Can anyone tell me what's the difference between these three?