geoffrey
/
s6-pa-tp
Arşivlenmiş
1
0
Çatalla 0

TP6 Correction list.c

master
Geoffrey Frogeye 2017-03-29 11:59:21 +02:00
ebeveyn 04bb2bec3a
işleme f7e3478fce
2 değiştirilmiş dosya ile 2 ekleme ve 1 silme

Dosyayı Görüntüle

@ -19,6 +19,7 @@ void insertinList(Liste* mylist, int el)
{
Cell* newCell=(Cell*) malloc(sizeof(Cell));
newCell->key=el;
newCell->nextC=*mylist;
*mylist=newCell;
}

Dosyayı Görüntüle

@ -3,7 +3,7 @@
#include<stdlib.h>
#include<string.h>
#include <listechaines.h>
#include "listechaines.h"
//Affichage de la liste en ligne
void afficher_liste(Liste l) {