#include <stdio.h>
void reverse_string(char *str) {
int start=0;
int end=0;
while(str[end]!='\0') //Move end to the length of the string
{
end++;
}
end=end-1; //subract 1 to neglect the null character
while(start<end)
{
char temp=str[start];
str[start]=str[end];
str[end]=temp;
start++;
end--;
}
// Your logic here
}
int main() {
char str[101];
fgets(str, sizeof(str), stdin);
// Remove newline
int i = 0;
while (str[i] != '\0') {
if (str[i] == '\n') {
str[i] = '\0';
break;
}
i++;
}
reverse_string(str);
printf("%s", str);
return 0;
}
Input
firmware
Expected Output
erawmrif