It's a little fun project I did early 2025 in c. I recently found it in my folder, and decided to upload it. Below is the origional readme when wrote these codes. - 2025 Dec 6 16:08
Note::: it doesn't detect a return(new line). Please enter the contents in one whole paragraph (otherwise it will lost the track of the digit of previous unended loop) instructions for running this c program on macOS terminal (WindowsOS whould be similar but since I'm on macOS I'm sure below steps will 100% work on macOS)
- cmd +space, then search "Terminal", open it
- type in cd ~/Desktop <- The path this program(what have .c after the name) is located at if you put it on desktop then desktop it is. if in a folder, it's the path of the outside folder you can find full path by right click the file name
- type in clang en_decoder.c -o en_decoder/or gcc main.c -o en_decoder (you only need to do it once) you will find a new file generated. this is called compiled file, which can be run by your pc
- type in ./en_decoder(it works like open the program so whenever you want to use it you type in ./en_decoder)
- follow the instructions
- it will auto close the profile when done executing the program. if you want to reopen it, just repeat step 4-5
- if any updates have been made into the program and you want to delete the compiled file, type in rm en_decoder
coded by Gnatear 2025 Mar 30 6:17 | Instructions updated 2025 Dec 6 18:10