21 lines
163 B
C
21 lines
163 B
C
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
|
|
int main(void){
|
|
|
|
typedef struct mail {
|
|
int valeur;
|
|
struct mail* suivant;
|
|
}maillon;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|