#include #include #include struct Node { int a; char s[10]; }; void qsort(Node * n, int s) { if (s > 1) { Node pn = n[0]; int pi = 0; for(int i=1; i