12 lines
134 B
C
12 lines
134 B
C
struct foo
|
|
{
|
|
unsigned bar : 1;
|
|
unsigned lose : 1;
|
|
};
|
|
|
|
main ()
|
|
{
|
|
struct foo *win;
|
|
|
|
printf ("%d, %d\n", win->bar, win->lose);
|
|
}
|