Skip to content
Snippets Groups Projects
Commit de42408d authored by yassin.elhakoun's avatar yassin.elhakoun
Browse files

Update cours_21.md (typo sur les paramètres?)

parent e9b95e99
Branches revampProbStat
No related tags found
No related merge requests found
Pipeline #31688 failed
......@@ -483,8 +483,8 @@ matrice arbre_à_matrice(arbre)
```C
void qt_to_matrix(node *qt, int nb_li, int nb_co, int matrix[nb_li][nb_co])
for (int li = 0; li < nd_li; ++li) {
for (int co = 0; co < nd_co; ++co) {
for (int li = 0; li < nb_li; ++li) {
for (int co = 0; co < nb_co; ++co) {
node *current = position(li, co, qt);
matrix[li][co] = current->info;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment