فایل بهمراه توضیحات می باشد #include #include #include #include void quick_struct(struct student [], int, int);void quick(struct student [], int, int);void print(struct student [],int);void findname(struct student [],int );void fnprint(struct student [],int );void avg12(struct student [],int ); struct course{int no;char name[30]; int credit;float score;};struct student { char name[10] ; int no ; struct course c[5];} ; void main(){ int n, i, num; float x ; struct student *p ; char ch[30]; c ...