fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4.  
  5. #define MAX 20
  6. #define CNT 10
  7.  
  8. int main(void) {
  9. // your code goes here
  10. char str[CNT][MAX+1];
  11. int i;
  12. for(i=0;i<CNT;i++)scanf("%s",str[i]);
  13. qsort(str,CNT,MAX+1,strcmp);
  14. for(i=0;i<CNT;i++)printf("%s\n",str[i]);
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 2056KB
stdin
eins
zwei
drei
vier
funf
sechs
sieben
acht
neun
zehn
stdout
acht
drei
eins
funf
neun
sechs
sieben
vier
zehn
zwei