ID Number: Q68821
6.00 6.00a | 6.00 6.00a
MS-DOS | OS/2
docerr
Summary:
The following are several documentation errors in the mixed-language
example on page 315 of the "Microsoft C Advanced Programming
Techniques" shipped with C version 6.00:
The line shown as
#pragma pack(2);
should read as follows:
#pragma pack(2)
The lines that read
block_hed-n = 1;
block_hed-x = 10.0;
block_hed-y = 20.0;
should read as follows:
block_hed->n = 1;
block_hed->x = 10.0;
block_hed->y = 20.0;