How can i have a pointer to the next struct in the definition of this struct? :
typedef struct A {
int a;
int b;
A* next;
} A;
this is how i first wrote it but it does not work.
|
|
|
|
|
|
|
You can define the typedef and forward declare the struct first in one statment, and then define the struct in a subsequent definition.
Edit: As others have mentioned, without the forward declaratation the struct name is still valid inside the struct definition (i.e. you can used |
||||||||
|
|
|
In addition to the first answer, without a typedef and forward declaration, this should be fine too.
|
||
|
|
|
|
You can go without forward declaration:
|
||
|
|
|
|
You are missing the
|
||
|
|
|
|
Please, you're in C, not C++. If you really must typedef a struct (and most programmers that I work with would not¹), do this:
to clearly differentiate between ¹ |
||||||||
|