Talk:Struct (C programming language): Difference between revisions

Content deleted Content added
SineBot (talk | contribs)
m Signing comment by 199.116.175.88 - "confusing variable: new section"
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 whawhat is essentially the same data type.<br/>All the best, --[[User:Jorge Stolfi|Jorge Stolfi]] ([[User talk:Jorge Stolfi|talk]]) 21:57, 15 May 2009 (UTC)
 
== Type punning ==