apl/APL1.2/Aranger/Maximum.c

21 lines
163 B
C
Raw Normal View History

2022-01-14 06:54:18 +01:00
#include<stdio.h>
#include<stdlib.h>
int main(void){
typedef struct mail {
int valeur;
struct mail* suivant;
}maillon;
return EXIT_SUCCESS;
}