C Program Strong Password Generator

How to write a C Program Strong Password Generator in C Programming Language ?


This C Program Create A Strong Password Generator Program.


C Program Code :

  1. #include <stdio.h>
  2. #include <time.h>
  3.  
  4. /* C Program Strong Password Generator*/
  5.  
  6. int main (void)
  7. {
  8.         srand (time (NULL));
  9.  
  10.         char* alp  = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
  11.         char* num = "0123456789";
  12.         char* sym = "`~!@#$%^&*()_-+={}[]\\|:;\"'<>,.?/";
  13.  
  14.         int i = 0, x = 0, y = 0, z = 0;
  15.  
  16.         printf ("Your Password: ");
  17.  
  18.         for (= 0; i < 8; i++)
  19.         {
  20.                 x = (rand () % 51) + 1;
  21.                 y = (rand () % 9) + 1;
  22.                 z = (rand () % 31) + 1;
  23.                 printf ("%c%c%c", alp[x], num[y], sym[z]);
  24.         }
  25.  
  26.         return 0;
  27. }


Learn More :