Search This Blog

Saturday 19 November 2016

C program to Reverse a Sentence Using Recursion

/* Example to reverse a sentence entered by user without using strings. */

#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

No comments:

Post a Comment