一、调用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;
}

 

Logo

更多推荐