This commit is contained in:
Emmanuel Srivastava
2025-04-03 10:57:07 +02:00
parent 4fc06e0632
commit 0f00df2b1f
16 changed files with 25 additions and 0 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;
}