编写声明int
变量和float
变量的代码。使用相应的指针变量为这些变量赋值。使用int
和float
变量(而不是指针变量)显示结果。
示例代码
#include <stdio.h>
int main()
{
int age;
float weight;
int *a;
float *w;
a = &age; // 初始化指针
w = &weight;
*a = 22; // 使用指针设置值
*w = 67.6; // 使用指针设置值
printf("你今年 %d 岁了
",age);
printf("你的体重是 %.1f 公斤.
",weight);
system("pause");
return(0);
}
执行上面示例代码,得到以下结果:
你今年 22 岁了
你的体重是 67.6 公斤.