Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为我的 C 使用代码块和 gcc,因为我是初学者我如何清除屏幕功能
clrscr();
不管用
以下应该适用于大多数系统:
system("clear");
或者
system("tput clear");