[求助]输出函数的问题
能不能只用一个输出函数输出两个不同类型结构体类型的数据???如果可以的话,具体思路及简要步骤是怎样的 ???谢谢了!
不太懂你的意思
是不是
struct
{
int age;
char name[30];
} s1;
struct
{
int height;
int weight;
} s2;
printf("%s's height is%d",s1.name,s2.height);