Question: This is in Linux and write the code in C please. Thank you Requirements: Makefile Memory Structures You must create a C structure for a
This is in Linux and write the code in C please. Thank you
Requirements:
Makefile
Memory Structures
You must create a C structure for a datatype called sudoku that is saved in a header file
Test Case
Files: sudoku_puzzle.txt, human_input.txt, sudoku_puzzle.c, sudoku_puzzle.h
- Create a .c file for source code and .h file for header information. Put in a few lines of code - just enough to compile and produce some output.
- Create the Makefile - you'll need this to compile your program! Base this off of the advanced "Makefile-4" from the previous lab, but call it Makefile here.
- Test the Makefile
- Create a sudoku puzzle file (or copy the example above for a fast start)
- Add these files to your version control repository, and commit a new changeset. Be careful - don't include any of the temporary files your text editor might create! Those end in a tilde (~).
- Write file I/O code - Read in the crossword puzzle file and echo the output on the screen (for debugging)
- Test file I/O code
- Commit a new changeset to version control
- Write dynamic memory code - Save the puzzle into dynamic array(s) created based on the demo program code.
- Test dynamic memory code
- Commit a new changeset to version control
- Write the game play logic, prompting the user for input and comparing against the correct answer.
- Test game play logic
- Commit a new changeset to version control
- ... and so on ...
What other information do you need? Please let me know
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
