Programmation Avancée en C


arithmetique.c

00001 #include "arithmetique.h"
00002 
00003 int produit(int a, int b) {
00004     return a * b;
00005 }