char *Re(float avg)
{
if(avg>90.0)
return "best";
else if(avg>75)
return "better";
else
return "good";
}返回值是字符串,这个字符串是内存当中的什么地方呢???