#include <stdio.h> struct Xxx { int aa; double bb[2]; char *cc; char *dd[3]; }; void function1(struct Xxx *qq,struct Xxx *rr); int main() { struct Xxx mm,nn; function1(&mm,&nn); printf("%d %lf %lf %s%s%s%s\n",mm.aa,mm.bb[0],mm.bb[1], mm.cc,mm.dd[0],mm.dd[1],mm.dd[2]); printf(...