Create a program in C which encodes passwords. (Using pointers)
The Program will prompt the user to enter at max 10 user accounts
The user will enter:
-Username
-Password (see rules for password)
-and a Token.
The user should be able to enter up to 10 accounts.
The password should follow these rules, otherwise an error will be displayed:
-Only contain alpha numeric characters
-Must be at least 8 characters
-A Token is required to encode the password
-The Token must be an integer between 1-9
Change each character (in the password provided by the user) to the character represented by the current asciicode plus the Token value.
Store the following information using a structure named user_s:
User Name
Decoded password
Encoded password
Token
The encoded password should be displayed in all uppercase characters (see picture)
Username Password Encoded Password Token testing123 Password123 VGUVKPI345 QBTTXPSE234 test username