What does *nrgEst++ = accu do?
Sorry if this question is a bit amateur..
float *nrgEst,
for (k=lowerI;k<upperI;k++)
{
*nrgEst++ = accu;
}
Set *nrgEst to accu, then what? Does "++" increment the pointer address of *nrgEst or what?
float *nrgEst,
for (k=lowerI;k<upperI;k++)
{
*nrgEst++ = accu;
}
Set *nrgEst to accu, then what? Does "++" increment the pointer address of *nrgEst or what?
