Skip to content

Instantly share code, notes, and snippets.

@an0th3rhuman
Created April 26, 2016 16:26
Show Gist options
  • Save an0th3rhuman/9a0d8802ac71fec6b9b72987db903982 to your computer and use it in GitHub Desktop.
Save an0th3rhuman/9a0d8802ac71fec6b9b72987db903982 to your computer and use it in GitHub Desktop.
#include <stdio.h>
void Reverse();
int main()
{
printf("Enter a sentence: ");
Reverse();
return 0;
}
void Reverse()
{
char c;
scanf("%c",&c);
if( c != '\n')
{
Reverse();
printf("%c",c);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment