Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
What does this C++ code mean?
What does ‘unsigned temp:3’ mean?

I have seen one small c program recently.There in that program,the structure was declared in this manner which I could not understand.

struct
{
mynode *node;
unsigned vleft :1; 
unsigned vright :1; 
}save[100];

Here node is pointer to some other structure.

Can some one please explain what unsigned vleft :1; unsigned vright :1; are? And I could not find any datatype assigned to vleft and vright.What is the reason for that?

Thanks.

share|improve this question
2  
unsigned is the same as unsigned int. The : indicates a bit field. – William Pursell Jan 15 at 18:18

marked as duplicate by Jerry Coffin, Etienne de Martel, Mike, Mooing Duck, Mysticial Jan 15 at 18:30

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 5 down vote accepted

The default type assumed here is unsigned int, this is assumed by the compiler when you specify just unsigned.

The bitfield syntax unsigned vleft : 1 specifies the width in bits of the data field, in this situation it means that it's a single bit flag (which can be either 0 or 1). This is used to pack many fields of the structure in less bits (when you don't need to waste, like in this case, a whole char or int for just storing a flag).

share|improve this answer
I am new to this as well, but if the value will be represented by only one bit, wouldn't that make the value impossible to be negative? Why would one specify unsigned in this case? – Kevin Jan 15 at 18:28
@Kevin if you specified signed int the value could be either 0 or -1. – ouah Jan 15 at 18:29
@Kevin: in two's complement representation the most significant bit contributes as a negative power and in a 1-bit wide field the only bit is the most significant. – Jack Jan 15 at 18:40

The int datatype is implied and the :1 part means these members are only 1-bit values.

share|improve this answer

vleft and vright can hold only 1 bit int data (ie. 0 or 1).

unsigined is the short form of unsigned int. Below are the short forms of some of the C data types.

short = short int = signed short = signed short int
unsigned short = unsigned short int
int = signed int
unsigned = unsigned int
long = long int = signed long = signed long int
unsigned long = unsigned long int
long long = long long int = signed long long = signed long long int
unsigned long = unsigned long int
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.