Well, on line 28 you are attempting to assign an int to an array pointer. In line 35, you are attempting to get the address of a pointer. In line 37, you are passing the address of a pointer. In line 37 you didn't give it a second string to copy.
etc.
Take your errors one line at a time and make sure you understand the error and the cause. You will sometimes find that fixing an error adds/removes other errors.
|