temp1[i] = number%pow(10,i )/pow(10,i-1);
An error is shown in this line even though i include math.h library and use the correct operators
ERROR: invalid binary operands to %
How to deal with it?
An error is shown in this line even though i include math.h library and use the correct operators
ERROR: invalid binary operands to %
How to deal with it?
Comment