Rewrite Joanne's version of the game program so that it uses a linked list of players instead of an array. We recommend adapting the singly linked list code that we developed in class. Make sure that you don't have any memory leaks in your solution. Create and include a makefile in your submission that includes a rule that can be used with valgrind. Include all files necessary to compile and run your solution in your zip file (even ones that may be identical to our class files).
General assignment requirements, style and submission details:
gcc -std=c99 -pedantic -Wall -Wextra -O g++ -std=c++98 -pedantic -Wall -Wextra -ORemember: you will receive NO credit for programs that do not compile. Use incremental coding to insure that you always have a working program, even though it might be incomplete.