void bubble(char *item,int count); { register int a, b; register char t; for(a=1; a=a;--b){ if(item[b-1]>item[b]) t=item[b-1]; item[b-1]=item[b]; item[b]=t; } } }