apl/APL1.2/2.Structures/source/Tailles.c

24 lines
194 B
C
Raw Permalink Normal View History

2022-01-14 06:54:18 +01:00
#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;
}