Created
December 23, 2022 12:34
-
-
Save 7h3h4ckv157/b4749b228927fb1d1433493f41116f7b 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 <stdio.h> | |
#include <string.h> | |
int main(int argc, char **argv) { | |
char example[10]; | |
strcpy(example, argv[1]); | |
printf("%s\n", example); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment