In other programming languages you see something like this to implement a linked list
struct Node
{
int data;
struct Node *next;
};
I'd like to be able to make the equivalent:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Any idea that has not received any kudos within a year after posting will be automatically declined.