Create a C program and store the password "myPassword123!" as a cstring. Using a for-loop, do the following:
1) Start a for-loop that iterates up to 3 times
a) Ask the user to enter a password
b) If the password they entered is correct, print "Correct!", then break out of the loop
c) Else if the password is incorrect, but equals "myPassword123", tell them "Close! But incorrect −X attempt(s) remaining". Where X equals the amount of attempts the user has left (i.e. the amount of iterations left in the loop)
d) Else tell the user "Incorrect - X attempt(s) remaining". Where X equals the amount of attempts the user has left (i.e. the amount of iterations left in the loop)