在C语言中,程序有一个是system("CLS")什么意思?
1个回答
展开全部
system("CLS") 是在C语言程序中,调用系统命令cls完成清屏操作。
system函数是C语言提供的与操作系统衔接的函数,函数原型如下:
#include <stdlib.h> //所在头文件
int system(const char *command); //参数为操作系统命令
函数功能:execute a shell command 执行一个操作系统命令
如:
system("time /t") ;显示时间
system("dir"); //列目录
system函数是C语言提供的与操作系统衔接的函数,函数原型如下:
#include <stdlib.h> //所在头文件
int system(const char *command); //参数为操作系统命令
函数功能:execute a shell command 执行一个操作系统命令
如:
system("time /t") ;显示时间
system("dir"); //列目录
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询