Created
September 30, 2016 15:25
-
-
Save AndyNovo/cd6185981b21b93c57102125d62fce41 to your computer and use it in GitHub Desktop.
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
| #include <string.h> | |
| void go(char *data) { | |
| char name[64]; | |
| strcpy(name, data); | |
| } | |
| int main(int argc, char **argv) { | |
| go(argv[1]); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment