Skip to content

Instantly share code, notes, and snippets.

@RyanGFerguson
RyanGFerguson / PasswordGenerator.cpp
Created January 26, 2017 03:28
a simple password generator
#include "stdafx.h"
#include <string>
#include <cstdlib>
#include <ctime>
#include <iostream>
using namespace std;
string passwordGenerator();