So I have the following code:
*(pol1Card1+(i-1)) = ( *(pBuffer+(8*i-8)) + *(pBuffer+(8*i-6)) + *(pBuffer+(8*i-4)) + *(pBuffer+(8*i-2))/4 ) ;
I am trying to group data points into the array called pol1card1.
Is my code actually taking the values from pBuffer or the memory address? Because I want to take the values.
when that line is over, does the value in *(pollCard+(i-1)) make sense?