Welcome to the CCPG (C++ Password Generator)! This program generates a random password of a specified length using a mix of uppercase letters, lowercase letters, and digits. It's a simple, console-based application written in C++.
Password Generator!
Please enter the length of the password: 10
Your password is: IAYMaXjv6a
Password Generator!
Please enter the length of the password: 15
Your password is: IQtNOrWNwZf0WBP
Password Generator!
Please enter the length of the password: 8
Your password is: 8aB1cD3z
In these examples, the program prompts the user to enter the desired length of the password, and then generates a random password of that length. The generated passwords contain a mix of uppercase letters, lowercase letters, and digits.
v1.0.0