Description: You are developing a software package that requires users to enter their own passwords. Loop until the passwords meet the software criteria.
Use the following code to declare a password variable with a global constant
int SIZE=80;
char password[SIZE];
Next, use a while(true) to continue looping until the user enters a valid password. Read in the password and call the isValid program. You can use the isupper(), islower(), and isdigit() functions.