17 printf("a = %d\n", *b
);
23 printf("bolshevic.a = %d\n", bolshevic
.a
);
24 printf("bolshevic.b = %d\n", bolshevic
.b
);
25 printf("bolshevic.c = %d\n", bolshevic
.c
);
27 struct ziggy
*tsar
= &bolshevic
;
29 printf("tsar->a = %d\n", tsar
->a
);
30 printf("tsar->b = %d\n", tsar
->b
);
31 printf("tsar->c = %d\n", tsar
->c
);
34 printf("bolshevic.b = %d\n", *b
);
39 // vim: set expandtab ts=4 sw=3 sts=3 tw=80 :