Hi all,
Say I define something with the #define command, then later I want to divide a float or long number by that. Example:
#define BASE_LENGTH 20
float average = 240.32;
long average2 = 2432443;
average = average/BASE_LENGTH;
average2 = average2/BASE_LENGTH;
would this cause any problems involving opposing data types?
Sorry if this has been answered, but I can't seem to find the answer to this elsewhere, Thanks.