Content deleted Content added
m Signing comment by 199.116.175.88 - "→confusing variable: new section" |
→Separate name spaces, and recommended style: wha -> what |
||
Line 14:
This article should observe that struct names are a namespace separate from the main namespace of types and variables, so that one can declare
typedef struct ListNode { int val; struct ListNode *next; } ListNode;
That is, it is not necessary to use different names (ListNode_ and ListNode) for the two C views of
== Type punning ==
|