C言語におけるclrscr関数の使用方法と代替手段の解説
systemコマンドを使用する方法:#include <stdlib.h> int main() { system("clear"); // UNIX/Linux // system("cls"); // Windows return 0; }>>More
systemコマンドを使用する方法:#include <stdlib.h> int main() { system("clear"); // UNIX/Linux // system("cls"); // Windows return 0; }>>More