linux c 清屏功能实现
一、调用system("clear")函数二、printf("\x1b[H\x1b[2J")#include<stdio.h>#include<stdlib.h>#include<unistd.h>int main(){printf("hello !\n"
·
一、调用system("clear")函数
二、printf("\x1b[H\x1b[2J")
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
int main()
{
printf("hello !\n");
printf("hello !\n");
printf("hello !\n");
printf("hello !\n");
//system("clear");
//write(STDOUT_FILENO,"\x1b[H\x1b[2J",7);
printf("\x1b[H\x1b[2J");
return 0;
}
更多推荐
已为社区贡献1条内容
所有评论(0)