https://github.com/pavlevujicic/c-programming
Manipulate a collection of books made by different authors, that have been rated from 0-5 by members of a book club.
https://github.com/pavlevujicic/c-programming
c
Last synced: over 1 year ago
JSON representation
Manipulate a collection of books made by different authors, that have been rated from 0-5 by members of a book club.
- Host: GitHub
- URL: https://github.com/pavlevujicic/c-programming
- Owner: PavleVujicic
- Created: 2023-12-21T22:23:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-21T22:25:49.000Z (over 2 years ago)
- Last Synced: 2025-01-23T10:23:05.983Z (over 1 year ago)
- Topics: c
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
#Author:
Pavle Vujicic
#Purpose:
Manipulate a collection of books made by different authors, that have been rated from 0-5 by members of a book club.
User can have the option of to print out all the books in the collection at once or print out the top rated books, which are the best 20% percent of the books of the collection.
The user can also add a new book to the collection.
#list of source code files:
headers:
defs.h
source code:
club.c
books.c
load.c
main.c
#Compilation and Launching instructions:
extract all files to a3 directory.
go into a3
- cd a3
list all files in a3
- ls
To Compile:
gcc -Wall -o a3 main.c load.c club.c books.c
To run:
./a3