docs: 📝 Create documentation
This commit is contained in:
@ -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[]);
|
||||
|
||||
|
Reference in New Issue
Block a user