Difference between "struct foo*" and "foo*" where foo is a struct? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T16:33:20Zhttp://stackoverflow.com/feeds/question/427853http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/427853/difference-between-struct-foo-and-foo-where-foo-is-a-struct4Difference between "struct foo*" and "foo*" where foo is a struct?Erik Öjebo2009-01-09T12:13:20Z2009-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*)&sin;
sa = (sockaddr*)&sin;
</code></pre>
<p>Thanks /Erik</p>
http://stackoverflow.com/questions/427853/difference-between-struct-foo-and-foo-where-foo-is-a-struct/427863#4278639Answer by Mehrdad Afshari for Difference between "struct foo*" and "foo*" where foo is a struct?Mehrdad Afshari2009-01-09T12:17:01Z2009-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#4278640Answer by ocdecio for Difference between "struct foo*" and "foo*" where foo is a struct?ocdecio2009-01-09T12:17:37Z2009-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#4278654Answer by Avi for Difference between "struct foo*" and "foo*" where foo is a struct?Avi2009-01-09T12:17:38Z2009-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#4278660Answer by Lodle for Difference between "struct foo*" and "foo*" where foo is a struct?Lodle2009-01-09T12:18:00Z2009-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>