87-90 87、回答结果(结构体变量传递)。#include<stdio.h> struct student{ int x; char c;} a; int main(){ a.x=3; a.c='a'; f(a); printf("%d,%c",a.x,a.c);}f(struct student b){ b.x... C经典100题 2024-05-16 47 点赞 0 评论 71 浏览