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