Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/h1dd3n3y3/2d_array_multiplier
https://github.com/h1dd3n3y3/2d_array_multiplier
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/h1dd3n3y3/2d_array_multiplier
- Owner: h1dd3n3y3
- Created: 2023-01-31T17:52:18.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-04T09:33:08.000Z (9 months ago)
- Last Synced: 2024-04-04T10:36:51.884Z (9 months ago)
- Language: C
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 2D-Array Multiplier
This is a UNIX OS intended program, that multiplies two 2D-arrays, containing random numbers inside 1-20 range, using multiple process generation and Inter-Process Communication (IPC)
displaying all three arrays to your terminal screen.## Compile
* ### Method 1 (easiest):
Use the Makefile provided by cd-ing to the project directory and hitting the `make` command.
* ### Method 2 (beware the linker):
```
gcc 2d_arr_mul.c -o 2d_arr_mul -lm
```
- "-lm" helps the compiler to link the `floor()` and `log10()` functions to math.h library.