c-basic/README.md

11 lines
665 B
Markdown
Raw Normal View History

2022-11-24 14:43:03 +01:00
# c-basic
2022-11-25 23:09:40 +01:00
This Repository features C source code i wrote to learn c. Currently the most advanced program included is an
2022-11-24 15:25:19 +01:00
unfinished implementation of the huffman algorithm.
2022-11-25 23:09:40 +01:00
Some programs make use of outdated and unsafe functions such as gets() or scanf(), which **should never be used**.
That is the case, because we were teached to use some of these in programming classes. Ideally, all uses
of these unsafe functions should include a comment explaining why this is bad and also include and implemented
alternative, but that may not always be the case.
All code in this Repository was written on and for a Linux x86_64 system. It might not work on other systems.