X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/44e29ffea53b9da70e6b5e16f96aa0231540dd87..8c4b45bea612dbaa2b478203697ab153a11bf18a:/tipo3/main.c diff --git a/tipo3/main.c b/tipo3/main.c index 40418e4..c9fd819 100644 --- a/tipo3/main.c +++ b/tipo3/main.c @@ -1,20 +1,14 @@ #include - +typedef struct block_reg_t{ + int block; + int reg; +}block_reg_t; int main ( ) { -char v[39999]; -unsigned int ID_aux = 0, a= 0,b= 0,c=0,d=0; -v[0]=0x00; -v[1]=0x31; -v[2]=0xC7; -v[3]=0x06; -a = v[0]; -b = v[1]; -c = v[2]; -d = v[3]; -ID_aux = (d << 0 ) | (c << 8) | ( b << 16) | (a << 24); - -printf("el numero es = %x\n", ID_aux); + struct block_reg_t r; + + printf("sizeof(struct block_reg_t) = %d\n", sizeof(struct block_reg_t)); + printf("sizeof(r) = %d\n", sizeof(r)); return 0; }