14 lines
192 B
C
14 lines
192 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
struct enregistrement{
|
||
|
char champs1;
|
||
|
char champs2;
|
||
|
char champs3;
|
||
|
};
|
||
|
|
||
|
int main() {
|
||
|
struct enregistrement bob;
|
||
|
printf("%d\n",sizeof bob);
|
||
|
return 0;
|
||
|
}
|