Introduction

Soit la fonction factorielle :

1
int fact(int i) {
2
  if(i>0) return i * fact(i-1);
3
  else return 1 ;
4
}