Skip to content

Instantly share code, notes, and snippets.

@chrisseaton
Created April 29, 2015 11:57
Show Gist options
  • Save chrisseaton/18fd9d68db57515f0c8b to your computer and use it in GitHub Desktop.
Save chrisseaton/18fd9d68db57515f0c8b to your computer and use it in GitHub Desktop.
#include <stdio.h>
struct Foo {
int x;
};
int baz(int *bar) {
return *bar;
}
int main(int argc, char** argv)
{
struct Foo foo;
baz(&foo.x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment