为什么int n ='c';不行
#include
int main() { char c = 'a'; int n = c ; //将c赋值给n float f = c; //将c赋值给f double d = c; //将c赋值给d printf("%d\n",n); printf("%f\n",f); printf("%lf\n",d); return 0; } 为什么不能int n = 'c' ; float f = 'c'; double d = ' c';#include
int main() { char c = 'a'; int n = c ; //将c赋值给n float f = c; //将c赋值给f double d = c; //将c赋值给d printf("%d\n",n); printf("%f\n",f); printf("%lf\n",d); return 0; } 为什么不能int n = 'c' ; float f = 'c'; double d = ' c';2017-01-03
举报