一獒
2019-10-17 20:14
#include <stdio.h>
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;
c和;之间不要空格
printf("%f\n",d);
C语言入门
926206 学习 · 20797 问题
相似问题