根据给出的代码,完成函数STU findInfo(STU ss[],int n,char *pname)的定义。函数findInfo的功能是从给定的n个人的数据表ss[]中查找名字为pname的人的信息并返回。#include "stdio.h"#include "string.h"typedef struct /定义结构数据类型STU/{ int xh;char name[20];int score[3];
{