Write a procedure that will read characters from the keyboard until
a new line character (Enter) is typed. Store the line of text into
an array of characters whose address is passed to the procedure. Do
not store the new line character. Add a null character to the end
of the character array.
Procedure heading: void ReadString(char *str)