Skip to content

Instantly share code, notes, and snippets.

@feldspath
Created August 1, 2021 15:38
Show Gist options
  • Save feldspath/af7e0b213664f375b1c2d60e2aaa248c to your computer and use it in GitHub Desktop.
Save feldspath/af7e0b213664f375b1c2d60e2aaa248c to your computer and use it in GitHub Desktop.
int* initialize_a() {
int* pa = (int*)malloc(sizeof(int));
*pa = 3;
return pa;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment