ποΈ Developed by Codespark Engineering
This program automatically generates a phrase containing a name and RU (ID number), then encrypts it by replacing:
- Vowels (A, E, I, O, U) β with numbers (2β6)
- Digits (0β9) β with letters (AβU) following a specific mapping
The result is a transformed string that hides the original content in a simple but illustrative way β useful as a basic introduction to character manipulation, encryption logic, and pointer arithmetic in C.
- βοΈ Automatically generates a string with full name and RU.
- π Replaces vowels with predefined numbers:
- A β 2
- E β 3
- I β 4
- O β 5
- U β 6
- π Replaces numbers with predefined vowels:
- 0 β A
- 1 β E
- 2 β I
- 3 β O
- 4 β U
- 5 β a
- 6 β e
- 7 β i
- 8 β o
- 9 β u
- π§ Uses pointers to traverse and modify the string directly.
- π€ Prints both the original and encrypted string.