Skip to content

Instantly share code, notes, and snippets.

Created March 29, 2017 06:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/69c464d861b51be5fa32c3fc3b87bb91 to your computer and use it in GitHub Desktop.
Save anonymous/69c464d861b51be5fa32c3fc3b87bb91 to your computer and use it in GitHub Desktop.
typedef struct attend
{
char title[32];
char fname[32];
char mname[32];
char lname[32];
char assoc[32];
struct date
{
int month;
int day;
int year;
};
}attendinfo;
typedef struct node
{
struct attendinfo;
struct node * next;
}node_t;
newnode->attendinfo->title = "";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment