docs: 📝 Create documentation

This commit is contained in:
2024-09-08 16:45:21 +02:00
parent d270bc4674
commit df7914a88e
2 changed files with 30 additions and 1 deletions

View File

@ -10,7 +10,16 @@ int valeurMax(int tab[], int n);
void additionMatrice(int matrice1[3][3], int matrice2[3][3], int resultat[3][3]);
void afficherMatrice(int matrice[3][3]);
void afficherMatrice(int matrice[3][3]) {
// This functions prints a 3x3 matrix in the console
for (int i = 0; i < 3; i++) {
printf("|");
for (int j = 0; j < 3; j++) {
printf("%d ", matrice[i][j]);
}
printf("|\n");
}
}
void inverserChaine(char chaine[]);