编程学习网为您整理以下代码实例,主要实现:何时在scanf使用&,希望可以帮到各位朋友。
#include <stdio.h>
int main(voID){
int age;
float assets;
char pet[30]; // string
printf("Enter your age, assets, and favorite pet.\n");
scanf("%d %f", &age, &assets); // use the & here
scanf("%s", pet); // no & for char array
printf("%d $%.2f %s\n", age, assets, pet);
return 0;
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!