[ create a new paste ] login | about

Link: http://codepad.org/w5yVLIQq    [ raw code | output | fork ]

C, pasted on Jul 28:
#include<stdio.h>



typedef struct Divide8Bits_t
{
 char firstHalf:4;
 char secondHalf:4;
}Divide8Bits;

char FIL_historyTable = 0 ;
int main()
{

char wlgroup =1; 
Divide8Bits *ptr = (Divide8Bits *)&FIL_historyTable;

if( !(wlgroup&0x1) )
ptr->firstHalf = 5; // example 
else
ptr->secondHalf = 10; // example 


}


Output:
1
Exited: ExitFailure 160


Create a new paste based on this one


Comments: