关于char和scanf的问题
这是某次作业题的答案,有点不懂,求助!#include <stdio.h>
int main()
{
char name; /*为什么这里中括号内是256*/
float height, weight;
printf("请输入您的姓名:");
scanf("%s", name); /* 为啥这个name前面没有&*/
printf("请输入您的身高(cm):");
scanf("%f", &height);
printf("请输入您的体重(kg):");
scanf("%f", &weight);
printf("========== 正在为您转换 ==========\n");
height = height / 2.54; // 厘米转换为英寸
weight = weight / 0.453; // 公斤转换为磅
printf("%s的身高是%.2f(in),体重是%.2f(lb)。\n", name, height, weight);
return 0;
}
问题见红字 256写成200、100也没问题。占位符为%s时,后面不需要再使用&去引用地址。具体原因一两句话说不清楚,大概意思是c语言没有字符串类型,字符串是以字符数组的方式存储的,而数组名可以直接作为地址名。
页:
[1]