Update Readme

This commit is contained in:
stitchy 2023-10-15 16:17:07 -07:00
parent be78c1dbfa
commit 8f5ace5796
Signed by: stitchy
SSH key fingerprint: SHA256:yz2SoxdnY67tfY5Jzb0f2v8f5W3o/IF359kbcquWip8

View file

@ -5,9 +5,9 @@ This is a program which reads a CSV file with data about movies.
Please take care that the format is correct as the program does not parse arbitrary Please take care that the format is correct as the program does not parse arbitrary
length CSV files. length CSV files.
# Compiling ## Compiling
You can compile this program by using the make command. You can compile this program by using the make command or by hand.
Simply type: Simply type:
@ -15,6 +15,14 @@ Simply type:
make make
``` ```
or, to manually compile, type:
```
gcc -std=c99 -g *.c -o movies
```
## Running
To run, type: To run, type:
``` ```