Skip to content
Snippets Groups Projects
Commit b4a0d561 authored by nikholah's avatar nikholah
Browse files

update

parent cb5536a6
Branches
No related merge requests found
#include <stdio.h>
#include <malloc.h>
struct Matrice {
int nb_lignes;
int nb_colonnes;
int **valeurs;
};
#include "matrice.h"
void affiche(struct Matrice m){
for (int i = 0; i < m.nb_lignes; ++i) {
......
//
// Created by nikholah on 05/03/24.
//
#ifndef TD2_MATRICE_H
#define TD2_MATRICE_H
struct Matrice {
int nb_lignes;
int nb_colonnes;
int **valeurs;
};
#endif //TD2_MATRICE_H
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment