\* C Program using function to Reverse a sentence using recursion *\
# include < stdio.h >
# include < conio.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) ;
}
}