So I have this function which is supposed to reverse a string and then return it
char *my_revstr(char *str)
{
int i = 0;
int j = 0;
int k = 0;
while(str[j] != '\0') {
j++;
}
j--;
while(i < j) {
k = str[i];
str[i] = str[j];
str[j] = k;
i++;
j--;
}
return (str);
}
But whenever I try to run it I have segmentation fault, and I'll be honest I don't very know why. I hope someone can help me fix this ^^.
I am sure that you have a segmentation fault due to passing to the function a string literal something like
You may not change a string literal. Any attempt to change a string literal results in undefined behavior.
You should write like
Pay attention to that the variables i and j should have the type
size_t
because the typeint
can be not enough large to store sizes of strings.The function can be defined for example the following way as it is shown in the demonstrative program below,
The program output is
The function can be defined also for example the following way
Or you could implement the function using pointers. For example