Skip to content

Instantly share code, notes, and snippets.

@daoleno
Created January 15, 2018 06:52
Show Gist options
  • Save daoleno/14280f619c1e26bc294b4bd8ffaba776 to your computer and use it in GitHub Desktop.
Save daoleno/14280f619c1e26bc294b4bd8ffaba776 to your computer and use it in GitHub Desktop.
struct tips in c
typedef struct X { 
    int x; 
} X;

struct S { 
    int x; 
};
typedef struct S S;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment