Files
T
2013-01-02 21:49:47 -05:00

12 lines
164 B
C

#include <stdio.h>
#include <string.h>
int main(int argc, char **argv)
{
char buff[32];
strcpy(buff, argv[1]);
printf("buff = %s\n", buff);
return (0);
}