/*************************************************************/ /* */ /* Fuente original de SPDsoft 1992 */ /* */ /* (c) Sociedad Protectora de Diplodocus Soft. 1992 */ /* */ /* */ /*************************************************************/ #include main() { char stri[1024], stro[1024]; int i, j; gets(stri); while (!feof(stdin)) { if (stri[0] == 0) stro[0] = 0; else { i = strlen(stri); j = 0; do stro[j++] = stri[--i]; while (i != 0) ; stro[j] = NULL; } puts(stro); gets(stri); } }