Difference between "struct foo*" and "foo*" where foo is a struct? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T16:33:20Z http://stackoverflow.com/feeds/question/427853 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/427853/difference-between-struct-foo-and-foo-where-foo-is-a-struct 4 Difference between "struct foo*" and "foo*" where foo is a struct? Erik Öjebo 2009-01-09T12:13:20Z 2009-01-09T12:21:30Z <p>In C, is there a difference between writing "struct foo" instead of just "foo" if foo is a struct?</p> <p>For example:</p> <pre><code>struct sockaddr_in sin; struct sockaddr *sa; // Are these two lines equivalent? sa = (struct sockaddr*)&amp;sin; sa = (sockaddr*)&amp;sin; </code></pre> <p>Thanks /Erik</p> http://stackoverflow.com/questions/427853/difference-between-struct-foo-and-foo-where-foo-is-a-struct/427863#427863 9 Answer by Mehrdad Afshari for Difference between "struct foo*" and "foo*" where foo is a struct? Mehrdad Afshari 2009-01-09T12:17:01Z 2009-01-09T12:17:01Z <p>In fact, in standard "C" it's required to specify <code>struct</code> keyword. This is optional in C++.</p> <p>This is the reason some people define structs like this:</p> <pre><code>typedef struct foo { ... } bar; </code></pre> <p>to be able to use <code>bar</code> instead of <code>struct foo</code>. However, some C compilers do not enforce this rule.</p> http://stackoverflow.com/questions/427853/difference-between-struct-foo-and-foo-where-foo-is-a-struct/427864#427864 0 Answer by ocdecio for Difference between "struct foo*" and "foo*" where foo is a struct? ocdecio 2009-01-09T12:17:37Z 2009-01-09T12:17:37Z <p>You can use just "foo" if you typedef it.</p> http://stackoverflow.com/questions/427853/difference-between-struct-foo-and-foo-where-foo-is-a-struct/427865#427865 4 Answer by Avi for Difference between "struct foo*" and "foo*" where foo is a struct? Avi 2009-01-09T12:17:38Z 2009-01-09T12:17:38Z <p>Yes. In C (as opposed to C++), structs are in their own namespace. So if you defined a</p> <pre><code>struct sockaddr { ... } </code></pre> <p>you may not use it as</p> <pre><code>sockaddr s; sockaddr *ps; </code></pre> <p>In order to make that legal, you may use typedef in order to import into the non-struct namespace of type names:</p> <pre><code>typedef struct sockaddr { ... } sockaddr; sockaddr s, *p; </code></pre> http://stackoverflow.com/questions/427853/difference-between-struct-foo-and-foo-where-foo-is-a-struct/427866#427866 0 Answer by Lodle for Difference between "struct foo*" and "foo*" where foo is a struct? Lodle 2009-01-09T12:18:00Z 2009-01-09T12:18:00Z <p>It depends on how the struct is defined. If it is defined using a typedef you dont have to put the stuct keyword in front.</p> <pre><code>typedef struct { // } aStruct; aStruct abc; </code></pre> <p>but if its not a typedef you need the struct keyword.</p> <pre><code>struct aStruct { // } ; struct aStruct abc; </code></pre>