Skip to content

Instantly share code, notes, and snippets.

@marksands
Created March 22, 2010 22:35
Show Gist options
  • Save marksands/340619 to your computer and use it in GitHub Desktop.
Save marksands/340619 to your computer and use it in GitHub Desktop.
#include <iostream>
int main() {
const char* a = "fsdcpuhauicimnsktnts ";
for( int i = 0; i < 50; ++i ) {
int k = rand() % 5, j = 0;
do putchar(a[j*5+k]); while(a[j++*5+k]>' ');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment