题目内容
写出以下程序运行结果#include#includestruct tree{int x;char *s;}t;func(struct tree t){t.x=10;t.s="computer";return 0;}main(){t.x=1;t.s="minicomputer";func(t);printf("%d,%s\n",t.x,t.s);}
查看答案
搜索结果不匹配?点我反馈
更多问题