Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

So I just finished programmed this website

Name: Anonymous 2010-01-16 14:09

http://pwdb.in

gotta's love php

Name: Anonymous 2010-01-16 14:51

MY CODE TAGS

/* PRONOUNCEABLE PASSWORD GENERATOR */
/*          BASIC EDITION           */

#include <stdio.h>
#include <time.h>

int main()
{
    char cons[] = "bcdfghjklmnprstvwxz";
    char vowels[] = "aeiouy";
    int x;
   
    srand(time(NULL));
    for (x = 0; x < 8; x++)
    {
        if (x % 2 == 0)
            printf("%c", cons[rand() % 19]);
        else
            printf("%c", vowels[rand() % 6]);
    }   
    return 0;
}


Also, you wouldn't happen to be:
http://dis.4chan.org/read/prog/1263326296
, would you?

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List