Mathc complexes/Fichiers c : test02a
Apparence
Installer et compiler ce fichier dans votre répertoire de travail.
test02a.c |
---|
/* ------------------------------------ */
/* Save as : test02a.c */
/* ------------------------------------ */
#include "w_a.h"
/* ------------------------------------ */
int main(void)
{
double **A = i_mZ(R3,C5);
double **B = i_mZ(R3,C5);
double **AplsB = i_mZ(R3,C5);
clrscrn();
printf(" Initialize three matrices \n"
" Free three matrices\n\n");
stop();
f_mZ(A);
f_mZ(B);
f_mZ(AplsB);
return 0;
}
/* ------------------------------------ */
/* ------------------------------------ */
Dans ce fichier on crée trois matrices de trois lignes et cinq colonnes et on libère l'espace.
Il n'y a pas de sortie écran.