This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| 06-6-string-ROT13.c | |
| Tratamiento de strings. | |
| Aplica ROT13 a una cadena de caracteres. | |
| */ | |
| #include <stdio.h> | |
| char rot13(char caracter); |