Developpement/23DEV1.1/TPS1/TP2/19-Structures/Tailles.c

17 lines
226 B
C
Raw Permalink Normal View History

2024-12-09 11:53:11 +01:00
#include <stdio.h>
#include <stdlib.h>
struct taille{
int a;
int b;
int c;
/*char a;
char b;
char c;*/
};
typedef struct taille e;
int main(int argc, char const* argv[]){
printf("%d\n",sizeof(e));
}