#include <stdio.h>
int main()
{
char c = 'a';
double d = 'c' ;
printf("%lf\n",d);
return 0;
}
char是1个字节,double是8字节,so char不能直接转换double