Skip to content

Instantly share code, notes, and snippets.

@antiface
Created December 30, 2016 07:33
Show Gist options
  • Save antiface/9026a1a41587f9831f0421033a9c7de1 to your computer and use it in GitHub Desktop.
Save antiface/9026a1a41587f9831f0421033a9c7de1 to your computer and use it in GitHub Desktop.
#include <stdio.h>
typedef struct {
char * name;
int age;
} person;
int main() {
person john;
/* testing code */
john.name = "John";
john.age = 27;
printf("%s is %d years old.", john.name, john.age);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment