I´m trying to copy a string that is in the comand line in argv to "op"
This is the function in C that i have been trying to fix and just can´t. I know it´s something pretty basic but it´s going over my head:
int main(int argc, char* argv[])
{
char op[90];
strcpy(op,*argv[1]);
printf("\n %s",op);
return 0;
}