APL/APL1.2/TP02/tailles.c

16 lines
233 B
C
Raw Normal View History

2021-11-30 13:54:37 +01:00
#include<stdio.h>
#include<stdlib.h>
struct enregistrement {
int champ1;
char champ2;
char champ3;
};
int main(int argc, char * argv[]) {
struct enregistrement toto = {};
printf("%d\n", sizeof(toto));
return EXIT_SUCCESS;
}