Skip to content

Instantly share code, notes, and snippets.

@webgtx
Created March 14, 2022 10:38
Show Gist options
  • Save webgtx/465588cc84c5052e9764ce42e8b00186 to your computer and use it in GitHub Desktop.
Save webgtx/465588cc84c5052e9764ce42e8b00186 to your computer and use it in GitHub Desktop.
Matrix in C
void matrix() {
char mtx[2][3] = {{"mat"}, {"rix"}};
mtx[1][1] = '1';
for (int i = 0; i < 2; i++) {
printf("%i)idx: [%c] [%c] [%c]\n", i, mtx[i][0], mtx[i][1], mtx[i][2]);
}
printf("\tsizeof arr = %i bytes\n", sizeof(mtx));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment