G
Guest
What is the function of ":" and followed number (2 or 1) in the followin
structure?
typedef struct {
unsigned int A : 2;
unsigned int B : 2;
unsigned int C : 2;
unsigned int D : 2;
unsigned int E : 1;
} ASampleStruct;
structure?
typedef struct {
unsigned int A : 2;
unsigned int B : 2;
unsigned int C : 2;
unsigned int D : 2;
unsigned int E : 1;
} ASampleStruct;