24 lines
194 B
C
24 lines
194 B
C
|
#include<stdio.h>
|
||
|
#include<stdlib.h>
|
||
|
|
||
|
int main(void){
|
||
|
|
||
|
|
||
|
struct taille {
|
||
|
|
||
|
char enr1;
|
||
|
int enr2;
|
||
|
char enr3;
|
||
|
|
||
|
};
|
||
|
|
||
|
struct taille test;
|
||
|
|
||
|
printf("%zu\n", sizeof(test) );
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|