Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <math.h>
- #include <stdlib.h>
- #include <time.h>
- #include <string.h>
- typedef struct Liste
- {
- int length;
- char *auteur;
- char *titre;
- struct Liste *suivant;
- struct Liste *debut;
- struct Liste *fin;
- }*Liste;
- void ajouter(Liste *debut, int val) {
- Liste *noeud_actuel = debut;
- while (noeud_actuel->suivant != NULL) {
- noeud_actuel = noeud_actuel->suivant;
- }
- noeud_actuel->suivant = (Liste *) malloc(sizeof(Liste));
- noeud_actuel->suivant->val = val;
- noeud_actuel->suivant->suivant = NULL;
- }
- int main()
- {
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement