Skip to content

Instantly share code, notes, and snippets.

@arn-ob
Created December 31, 2014 09:27
Show Gist options
  • Save arn-ob/3ea186574211c5a4e052 to your computer and use it in GitHub Desktop.
Save arn-ob/3ea186574211c5a4e052 to your computer and use it in GitHub Desktop.
Word reverse by using recursion ....
#include<stdio.h>
void reverse ()
{
char c;
scanf("%c",&c);
if(c!='\n')
{
reverse();
printf("%c",c);
}
}
void main()
{
printf("Enter a sentence ");
reverse();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment