Write a C program to reverse a string entered through keyboard.
Answers
Answered by
0
#include <stdio.h>
#include <string.h>
int main()
{
char arr[100];
printf("Enter a string to reverse\n");
gets(arr);
strrev(arr);
Similar questions