
www.Usenet.com
| <-- __Chronological__ --> | <-- __Thread__ --> |
struct { int a; int b; int c; }structABC;
structABC ABC;
Wouldn't you prefer
typdef struct { ... } structABC ABC;
?
Now, when IDE I use structABC and write ABC. (note the dot) it will show the choices for structs internal variables I can choose from.
| <-- __Chronological__ --> | <-- __Thread__ --> |