DEV_BUT1/DEV1.1S/TP02/tailles.c

15 lines
227 B
C
Raw Normal View History

2023-02-08 11:18:16 +01:00
#include <stdio.h>
#include <stdlib.h>
int main(void){
struct tailles{
char* a;
char* b;
char* c;
};
struct tailles chaine = {"e","ab","c"};
int res = sizeof(chaine);
printf("%d\n", res);
return EXIT_SUCCESS;
}