An open API service indexing awesome lists of open source software.

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.

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.