Menu

#6 declarations inside structs

open
nobody
None
5
2005-03-10
2005-03-10
Anonymous
No

I like the following layout in declarations:
int a,
b,
c;
GC can do this.

But, inside a struct GC behaves differently:

typedef struct
{
int a,
b,
c;
} x;

is converted into:

typedef struct
{
int a, b, c;
} x;

GC.uranium@neverbox.com

Discussion

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.