How can I output data to the console in a table in C++? There\'s a question for this in C#, but I need it in C++.
This, except in C++: How To: Best way to draw table
I couldn't find something I liked, so I made one. Find it at https://github.com/haarcuba/text-table
Here's an exmaple of its output:
+------+------+----+
| |Sex | Age|
+------+------+----+
|Moses |male |4556|
+------+------+----+
|Jesus |male |2016|
+------+------+----+
|Debora|female|3001|
+------+------+----+
|Bob |male | 25|
+------+------+----+