找考题网-背景图
问答题

struct n
int x;
char c;

void func(struct n b)
b.x=20;
b.c=’y’:

main()
struct n a=10,’x’;
func(a);
printf("%d,%c",a.x,a.c);

【参考答案】

10,x
热门试题