C Program For Reverse a Sentence Using Recursion
personRam Pothuraju
October 11, 2016
#include <stdio.h>
void reverseSentence();
int main()
{
printf("Enter a sentence: ");
reverseSentence();
return 0;
}
void reverseSentence()
{
char c;
scanf("%c", &c);
if( c != '\n')
{
reverseSentence();
printf("%c",c);
}
}
Output
Enter a sentence: margorp emosewa
awesome program
Share to other apps