My problem is that I can't return the processed string to the function. The function's job is that it must accept a string, change its letters, and return the processed string to the function.
char *dna_strand(const char *dna)
{
int a;
for (a = 1; *(dna+a) != '\0' ; a++) {
}
char array[a];
for (int i = 0; i < a; ++i) {
if ('A' == *(dna + i)) {
array[i] = 'T';
} else if ('T' == *(dna + i)){
array[i] = 'A';
} else{
array[i] = *(dna + i);
}
}
return array;
}
Error : [1]: https://i.stack.imgur.com/uwvCh.png
You may not return a pointer to a local array with automatic storage duration because after exiting the function the array will not be alive and the returned pointer will be invalid.
You need to allocate an array dynamically.
Pay attention to that this loop
can invoke undefined behavior when the user will pass to the function an empty string.
You should write at least like
or
After that you can allocate dynamically a character array