Skip to content

Instantly share code, notes, and snippets.

@7h3h4ckv157
Created December 23, 2022 12:34
Show Gist options
  • Save 7h3h4ckv157/b4749b228927fb1d1433493f41116f7b to your computer and use it in GitHub Desktop.
Save 7h3h4ckv157/b4749b228927fb1d1433493f41116f7b to your computer and use it in GitHub Desktop.
#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