I want to know: how to clean screen on an UNIX-based system? I searched on the Internet, but I\'ve just found how to do it on Windows: system(\"CLS\") I don\'t want exactly
Use system("clear"); with header #include (for C Language) or #include (for C++).
system("clear");
#include