I'm wondering if anyone could help me out with the following code fragment. What I'm trying to figure out is how to store one array in another. I've tried everything I could think of yet all resulted in errors from the compiler. The following is a fragment from my code that should be enough show you where I stand:
char min[20], max[20], input[20] ;
printf("Enter word: ");
scanf("%s", &input);
min = input; max = input;
&, or usefgets. And loop through to copy arrays.strcpy. You can easily look that up.