Files
DEV/DEV1.1/TP19/tailles.c
2023-11-27 14:59:48 +01:00

14 lines
158 B
C

#include <stdio.h>
#include <stdlib.h>
struct taille{
char a;
char b;
char c;
};
typedef struct taille e;
int main(void){
printf("%lu\n", sizeof(e));
}