C语言程序设计(第二版)习题参考答案1
struct s {int a;float b;char *c;};void main(){ struct s x={19,83.5, "zhang"};struct s *px=&x;printf(
C语言程序设计(第二版)习题参考答案1