Exercice langage C addition de deux matrices
Ecrire un programme qui réalise l’addition de deux matrices A et B de mêmes dimensions N et M.
Rappel:
/ \ / \ / \ | a b c d | | a' b' c' d' | | a+a' b+b' c+c' d+d' | | e f g h | + | e' f' g' h' | = | e+e' f+f' g+g' h+h' | | i j k l | | i' j' k' l' | | i+i' j+j' k+k' l+l' | \ / \ / \ /
b) La matrice B est ajoutée à A.
La correction exercice langage C (voir page 2 en bas)