APL/Révisions/Structures/tailles.c

14 lines
172 B
C
Raw Normal View History

2022-01-25 12:00:33 +01:00
#include <stdio.h>
#include <stdlib.h>
struct toto {
int a;
char b;
char c;
};
typedef struct toto toto;
int main(void) {
printf("%d\n", sizeof(toto));
}