only one bit is reserved for it.so the binary representation is 1.since only one bit is present, that bit becomes sign nit and hence -1 On Sun, Aug 21, 2011 at 8:07 AM, saurabh singh <[email protected]> wrote:
> Read bit field.... > > > On Sun, Aug 21, 2011 at 2:44 AM, Nitin <[email protected]> wrote: > >> #include<stdio.h> >> main() >> { >> struct value >> { >> int bit1:1; >> int bit2:4; >> int bit3:4; >> }bit={1,2,2}; >> printf("%d%d%d",bit.bit1,bit.bit2,bit.bit3); >> } >> >> output is -1,2,2; >> can anybody tell me the reason that y it is giving -1 ?? >> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Algorithm Geeks" group. >> To post to this group, send email to [email protected]. >> To unsubscribe from this group, send email to >> [email protected]. >> For more options, visit this group at >> http://groups.google.com/group/algogeeks?hl=en. >> > > > > -- > Saurabh Singh > B.Tech (Computer Science) > MNNIT ALLAHABAD > > > > -- > You received this message because you are subscribed to the Google Groups > "Algorithm Geeks" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=en. > -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en.
