This website works better with JavaScript.
Home
Help
Sign In
tmeissner
/
learning-by-doing
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
add comment
master
T. Meissner
10 years ago
parent
523e4b2aec
commit
32b0ddf6b6
1 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
2
D
point
in
the
3
D
point
structure
.
*/
typedef
struct
{
union
{
struct
point
;
Write
Preview
Loading…
Cancel
Save