14 lines
158 B
C
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));
|
|
} |