在C语言中,可以使用标准库函数`system("cls")`来实现刷新屏幕的功能。`system("cls")`会调用系统的命令行来执行`cls`命令,从而清空屏幕上的内容。
以下是一个示例代码:
```c
#include
#include
int main() {
printf("Hello, world!\n");
printf("Press any key to clear the screen.\n");
getchar(); // 等待用户按下任意键
system("cls"); // 清空屏幕
printf("Screen cleared!\n");
return 0;
}
```
当用户按下任意键后,屏幕上的内容会被清空,然后打印"Screen cleared!"。