Quote Originally Posted by Salem View Post
First off, find out if you can add 3rd party library files to your project folder.

Assuming yes, the standard goto answer for fancy console user interfaces is ncurses or pdcurses.
NCURSES — Frequently Asked Questions (FAQ)
PDCurses | PDCurses - a curses library for environments that don’t fit the termcap/terminfo model.
But be warned, this is a rabbit hole that could consume your time long before you get to writing any code.

Assuming no, you can make things look a bit prettier with Box-drawing character - Wikipedia

In any event, focus on getting a program which does what it's supposed to do first.
User interface polishing and eye candy come at the end, not at the start.
Thank you for answering, this is what i was looking for.