/*
* Author: Desinweb
*/
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char** argv) {
char frase[150];
int i;
printf("Introduce una frase \n");
gets(frase);
for (i = strlen(frase); i >= 0; i--) {
printf("%c", frase[i]);
}
return (EXIT_SUCCESS);
}
Comentarios recientes