Skip to content

Instantly share code, notes, and snippets.

View PVaid's full-sized avatar
🎯
Focusing

PVaid

🎯
Focusing
View GitHub Profile
@Parassharmaa
Parassharmaa / rand_password.cpp
Last active November 14, 2016 04:41
Cpp program to generate random password
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
char rand_char();
int main() {
srand((int) time(0));
int n;