https://github.com/g3th/c_multiply_matrix
Exercise in memory management. Multiply and print two differently-sized matrices.
https://github.com/g3th/c_multiply_matrix
c extremely-cancerous help long-winded struct typedef
Last synced: 23 days ago
JSON representation
Exercise in memory management. Multiply and print two differently-sized matrices.
- Host: GitHub
- URL: https://github.com/g3th/c_multiply_matrix
- Owner: g3th
- Created: 2024-06-01T04:43:48.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-05T04:40:04.000Z (about 2 years ago)
- Last Synced: 2025-03-05T00:27:39.076Z (over 1 year ago)
- Topics: c, extremely-cancerous, help, long-winded, struct, typedef
- Language: C
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Multiply 2x3 * 3x2 Matrices
# Dynamically allocate memory for structs and arrays
Simple exercise in memory management.
Dynamic allocation passing a pointer to a struct, changing the data in a function, and printing the result.
Multiply and print two differently sized matrices, one being 2x3, and another being 3x2.