if ((floorf(((X[k][i]-X[k-1][i])/X[k][i])*1000)/1000)) == 0.055) //chk %error = 0.055 and stop
print(k);
break;
i am writing these codes in visual studio and i m getting a red zigzag underline below the '==' sign saying 'expected an expression'.
can i not compare these values.X[][] is float.
(i have included math.h)