Révision 134
Ajouté par Louis JACQUET il y a environ 3 ans
branch/JACQUET/sp4a12/main.c | ||
---|---|---|
|
||
//Fonction ? modifier !!!!!
|
||
void traitement(char * trame)
|
||
{
|
||
{
|
||
static int cpt=0 ;
|
||
cpt++ ;
|
||
|
||
printf ("> %s\n",trame);
|
||
}
|
||
|
Formats disponibles : Unified diff
Nous avons déclarer une variable statique dans la fonction traitement, elle doit s'incrémenter a chaque entré de boucle et grâce au Watch nous l'avons bien vérifié.