Computer Science, asked by Hriteeka6482, 1 year ago

Write a C program to reverse a string entered through keyboard.

Answers

Answered by rjgolu
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