若定义了int a;char b;float c;,则表达式a*b-c的类型是()
float
int
char
double
因为int a;char b;float c;,所以在计算表达式a*b-c之后,数据类型应该为double型。