15 lines
162 B
C
15 lines
162 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
struct zoccurence{
|
|
int nb;
|
|
char lettre;
|
|
};
|
|
typedef struct zoccurence occ;
|
|
typedef struct zoccurence * freq;
|
|
|
|
|
|
|
|
|
|
|
|
|