for (n=0;n<sizeof(arr)/sizeof(*arr); n++)
i got this piece of code and don't know what this '/' does.
is it just a arithmetic operater and means 'divide by' ?
'arr' is my array, so does it just divide the size of my array by the size of the array itself?
I'm confused