Browse Source

add comment

master
T. Meissner 9 years ago
parent
commit
32b0ddf6b6
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      21st_century_c/chapter11/seamlesstwo.c

+ 4
- 1
21st_century_c/chapter11/seamlesstwo.c View File

@ -8,7 +8,10 @@ typedef struct point {
} point;
/*
Nested the anonymous struct in anonymous union together with a named struct
to support direct access to 2D point in the 3D point structure.
*/
typedef struct {
union {
struct point;


Loading…
Cancel
Save