/* variable globale */ int a; /* parametres */ void hop(int b,int c) { /* variables locales */ int i,j; /* variable statique (conserve sa valeur entre 2 appels) */ static int memo; }