Which data-type combination best represents an age of 25, a height of 1.75, and an initial of A?
A
Use char for all three values.
char
int for age, float for height, and char for initial
int
float
float for age, char for height, and int for initial
char for age, int for height, and float for initial