#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 algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to