#include #include void foo(char *input) { char buf[50]; strcpy(buf, input); puts(buf); } int main(int argc, char **argv) { foo(argv[1]); }