an edition to the job that Chaser324 has done with the curses library in C program, implementing the old nostalgic game of the 20 century
You need to install the curses library as follows:
sudo apt install ncurses-*
To compile the program, you're gonna follow the pattern below:
gcc space-invaders.c -o space-invaders -lncurses
To run, you just have to execute the binary file as follow (if you properly followed the last step):
./space-invaders
Enjoy!