This commit is contained in:
Emmanuel Srivastava
2024-12-18 10:13:34 +01:00
parent e3f82e9512
commit ae2fc9e63f
3 changed files with 32 additions and 25 deletions

View File

@@ -25,4 +25,8 @@ char dequeue(file* f){
f->dernier=NULL;
}
return m.valeur
}
int main(void){
return 0;
}

View File

@@ -1,25 +0,0 @@
#include <stdio.h>
#include <stdlib.h>
typedef struct {
char tab[50];
int indice_debut;
int indice_fin;
int taille;
} car_file;
char dequeue(car_file* f){
f->indice_debut=(f->indice_debut+1)%50;
f-taille--;
return f->tab[(f->indice_debut+49)%50];
}
int main(void){
return 0;
}