view letersort @ 5885:36287289b2d0

<shachaf> ` sed -i \'s/therefore//\' wisdom/pineapple
author HackBot
date Tue, 04 Aug 2015 23:05:40 +0000
parents a5ef8d072826
children
line wrap: on
line source

#include <stdio.h>
int compare(char *s,char *c){return*c-*s;}int main(){char w[40];int c,i=0;while(
1){c=getchar();if(c<=32||c==EOF){qsort(w,i,1,compare);w[i]=0;printf("%s",w);if(c
==EOF)break;putchar(c);i=0;}else{w[i++]=c;}}}