Skip to content

Instantly share code, notes, and snippets.

View apzzd's full-sized avatar
😱
life is fine 😱

Ada apzzd

😱
life is fine 😱
View GitHub Profile
@apzzd
apzzd / matrixTimesMatrix.c
Last active May 21, 2024 19:57
✨ c code for multiplying two 2x2 matrices, with arguments ✨
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
// first, making all these variables to use later
float matrix1[4];