This directory contains all my task solutions for the CPython programming language and higher language codes.
-
All files were interpreted/compiled on Ubuntu 20.04 LTS using python3 (version 3.8.5)
-
All C files were compiled on Ubuntu 20.04 LTS using gcc, with the options -Wall -Werror -Wextra -pedantic -std=gnu89
gcc -Wall -Werror -Wextra -pedantic -std=gnu89
-
Each folder is for the respective task projects.
-
There were no errors and no warnings during compilation. All warnings were rectified, all bugs fixed.
-
All C codes follow the Betty coding style, and was checked using betty-style.pl and betty-doc.pl
-
All Python codes follow the pycodestyle (version 2.8.) ..