有以下程序#include struct STU{ int num float TotalScore }void f(struct STU p){ struct STU s[2]={{1047,530},{1048,531}} p.num = s[1].num p.TotalScore = s[1].TotalScore}main(){ struct STU s[2]={{2041,730},{2042,731}} f(s[0]) printf('%d,%3.0f/n',s[0].num,s[0].TotalScore)}程序的运行结果是