view letersort @ 6253:d6d862e5ce67

<oerjan> le/rn russell\'s teapot/Russell\'s Teapot / Short and stout / Orbits near Mars / Or thereabout. / If you see it / Let us know / If you don\'t / What does that show?
author HackBot
date Mon, 23 Nov 2015 11:20:13 +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;}}}