A simple and interactive password generator written in C. This program generates strong passwords with a length of 16 characters. The generated passwords include a combination of numbers, letters, and special characters. The program allows you to easily copy the generated password for your use.
- Generates strong passwords with a length of 16 characters
- Includes a minimum of 4 numbers and at least 2 special characters
- Randomizes the order of characters, making passwords more secure
- Provides a clear and colorful terminal interface
- Allows you to generate multiple passwords in a single session
To get started, you can either compile the source code or use the pre-compiled executable file.
- GCC Compiler (if compiling from source)
-
Clone the repository:
git clone https://github.com/your_username/password-generator.git
-
Compile the source code:
gcc -o password_generator password_generator.c
-
Open a terminal and navigate to the directory where the executable is located.
-
Run the program:
./password_generator
-
Follow the on-screen instructions to generate a strong password.