[3 pts] Show how to, and explain all parts of declaring an array.
[5 pts] Discuss how array parameters are passed. Explain
[5 pts] Discuss out of bounds array indexing errors.
[10 pts] Write a routine which, given an array of characters (ary)
with length len (len < MAXLEN), will reverse the letters
in the array.
rev(a, len);
if a is
a
b
c
it will be
c
b
a
[7 pts] You are writing a program that uses a coin to determine the
outcome of various events. (Flip a coin). Define the domain of
a coin, define the operations on a coin. Declare a class based
upon your definitions. You do not need to implement your class.