This commit is contained in:
Emmanuel Srivastava
2025-03-12 13:06:52 +01:00
parent c987edda6e
commit 9e107c8657
38 changed files with 94 additions and 2 deletions

View File

@@ -0,0 +1,25 @@
#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;
}