Skip to content

Instantly share code, notes, and snippets.

@gvnwltrs
Created January 8, 2021 21:29
Show Gist options
  • Save gvnwltrs/5d37572257a61e2a5c1c44a83f954c1a to your computer and use it in GitHub Desktop.
Save gvnwltrs/5d37572257a61e2a5c1c44a83f954c1a to your computer and use it in GitHub Desktop.
Copy Array #C
int main()
{
int a[] = {1, 2, 3, 4};
int b[];
memcpy(b, a, 4*sizeof(int));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment