Define a function backwards_alphabet(curr_letter) that prints the alphabet backward. Given a starting letter, it should print the letters in reverse order until 'a' is reached. For instance, if the starting letter is 'd', what will be the output?
a) d, c, b, a
b) d, c, b
c) c, b, a
d) b, a