Write a function called read_and_print() that will do the following:
. Open a text file called " " for read-only access.
. Read a word that is terminated by a newline from the file into the character array called "my_string".
. Read an integer terminated by a newline into the int variable called "my_int".
. Print the string and the integer value.
. Return the my_int value.
- If the file cannot be opened for reading, return -1.
- If an error occurs while reading from the file, return -1.