An animated donut being rendered on terminal made with C.
Download the source code navigate to the folder where the source file "donut.c" is present and run
gcc donut.c -lm -o donut
This will create a object file that we can execute!
P.S. : The -lm flag links the math.h library to our file.