diff options
| author | mo <mo.khan@gmail.com> | 2019-05-25 14:14:33 -0600 |
|---|---|---|
| committer | mo <mo.khan@gmail.com> | 2019-05-25 14:14:33 -0600 |
| commit | 34fe282eb3ed97cc38d9110303c4dd36ace48637 (patch) | |
| tree | 77c0361c452f72c0c34e587c1eb210d7c4c173ba | |
| parent | 4c269898fa56563e0dab5d7e9fbed676f8781abe (diff) | |
add summary
| -rw-r--r-- | README.md | 27 |
1 files changed, 21 insertions, 6 deletions
@@ -1,13 +1,26 @@ # COMP-325 Assignment 1 +## Mo Khan -For Assignment 1, you are going to complete the following learning activities taken from your textbook. -Use the script command to save the terminal session wherever necessary. Saving the terminal starts with the script filename command and ends with exit. +I have completed this assignment on two different machines. -Combine all required problems in this set in one file, name it `COMP325_1_YYMM` -(replacing ‘YYMM’ with the current year and month, e.g., 1309), -and upload it here to submit it to your tutor for marking and feedback. +1. macOS 10.14 +2. Fedora release 30 -Be sure to complete the final step—click on the Send for Marking button to notify your tutor. +For some sections, I chose to run a `Fedora` docker container to isolate +the impact to my host system. The captured output from the `script` +command is placed in the `exercises` directory and named appropriately. +In most cases, I have provided a formatted version of the output in this +document to save the reader from having to jump back and forth. + +The source code for the `c` program is placed in the `src` directory. A +minimal `Makefile` is also provided for the reader. + +This assignment has been placed in a private git repository hosted on +`GitHub`. Access to this repository is available upon request. + +Thanks, enjoy and feedback is always welcome and appreciated! + +mo (mo@mokhan.ca) ## Solve problems 7–11 and 15–17 at the end of Chapter 7. @@ -472,6 +485,8 @@ Your program must have declaration statements, such as float c, f; **Delete the semicolon from the end of the statement.** Recompile and report the kind of error. The C compiler often provides cryptic error messages. Interpret this message. +See `src/temperature.c` and `Makefile`. + The compiler error is the following: ```bash |
