C语言求解
struct pupil {char name;
int age;
int sex;
} pup, *p=pup;
以下scanf函数调用语句中不正确的是__。
A.
scanf("%s", pup.name);
B.
scanf("%d", &pup.age);
C.
scanf("%d", p->age);
D.
scanf("%d", &(p->sex));
->是啥意思
这题怎么做T T c
非字符串,都得加& ba21 发表于 2022-4-7 15:56
c
非字符串,都得加&
好的谢谢!
页:
[1]