home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hall of Fame
/
HallofFameCDROM.cdr
/
open
/
tur-c-tu.lzh
/
SOURCE.ZIP
/
UNION1.C
< prev
next >
Wrap
C/C++ Source or Header
|
1988-02-01
|
478b
|
20 lines
/* Chapter 11 - Program 5 */
main()
{
union {
int value; /* This is the first part of the union */
struct {
char first; /* These two values are the second */
char second;
} half;
} number;
long index;
for (index = 12;index < 300000;index += 35231) {
number.value = index;
printf("%8x %6x %6x\n",number.value, number.half.first,
number.half.second);
}
}