When programming in Arduino, you might have occasion to go beyond the standard
datatypes of int and String.
Data Types
You might have noticed that if you did the following:
int count = 5;
int groups = 2;
Serial.println(count/groups);
Serial would have printed 3. This can be a head-scratcher,