Created
January 8, 2021 21:29
-
-
Save gvnwltrs/5d37572257a61e2a5c1c44a83f954c1a to your computer and use it in GitHub Desktop.
Copy Array #C
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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