在C语言程序中是清屏的意思。
成都创新互联公司从2013年创立,是专业互联网技术服务公司,拥有项目网站制作、成都网站建设网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元富拉尔基做网站,已为上家服务,为富拉尔基各地企业和个人服务,联系电话:13518219792
当你编写的程序有输出的时候,如果要进行多次调试,屏幕上会显示很多次的输出的结果,看上去非常的复杂非常的乱。那么我们就可以在程序中的输出语句之前加上“system("CLS");”,当我们用上这条语句之后。
这样每次程序运行的时候都会将上一次运行输出的内容给清除掉,屏幕上只显示本次输出的结果。这样看起来就非常的简洁。
扩展资料:
在VC环境下有两种办法实现清屏:
1、#include windows.h
system("cls");这种办法的缺点是程序额外运行系统程序执行清屏操作,延长了程序执行时间。
2、自己写函数,这种办法快
这是从微软MSDN得到的方法:
/* Standard error macro for reporting API errors */
#define PERR(bSuccess, api){if(!(bSuccess)) printf("%s:Error %d from %s \
on line %d\n", __FILE__, GetLastError(), api, __LINE__);}
void cls( HANDLE hConsole )
{
COORD coordScreen = { 0, 0 }; /* here's where we'll home the
cursor */
BOOL bSuccess;
DWORD cCharsWritten;
CONSOLE_SCREEN_BUFFER_INFO csbi; /* to get buffer info */
DWORD dwConSize; /* number of character cells in
the current buffer */
/* get the number of character cells in the current buffer */
bSuccess = GetConsoleScreenBufferInfo( hConsole, csbi );
PERR( bSuccess, "GetConsoleScreenBufferInfo" );
dwConSize = csbi.dwSize.X * csbi.dwSize.Y;
/* fill the entire screen with blanks */
bSuccess = FillConsoleOutputCharacter( hConsole, (TCHAR) ' ',
dwConSize, coordScreen, cCharsWritten );
PERR( bSuccess, "FillConsoleOutputCharacter" );
/* get the current text attribute */
bSuccess = GetConsoleScreenBufferInfo( hConsole, csbi );
PERR( bSuccess, "ConsoleScreenBufferInfo" );
/* now set the buffer's attributes accordingly */
bSuccess = FillConsoleOutputAttribute( hConsole, csbi.wAttributes,
dwConSize, coordScreen, cCharsWritten );
PERR( bSuccess, "FillConsoleOutputAttribute" );
/* put the cursor at (0, 0) */
bSuccess = SetConsoleCursorPosition( hConsole, coordScreen );
PERR( bSuccess, "SetConsoleCursorPosition" );
return;
}
参考资料来源:百度百科-system("cls")
使用系统(CLS);头文件stdlib的简单示例。h #包括 stdio。h #包含 stdlib。h int main () {printf ("Hello World! "\ n”);系统(“暂停”);系统(CLS);系统(“暂停”);返回0;}。
clrscr函数是C语言的清除函数,它清除屏幕上的输出,clrscr是clear screen的缩写。Clrscr不是C语言的标准库函数,而是TC平台特有的函数,其他编译器无法使用。
扩展资料:
在C语言中,需要在代码的开头定义变量,在代码的开头不允许使用表达式。因此,不允许将调平函数放在它的前面。
使用系统(CLS);可以达到画面清除的效果,在DOS画面中。系统功能已经包含在标准C库中,系统调用是通过命令进行的。函数原型:int system (char * command);参数:字符类型的命令函数:发出DOS命令。
实例:#include #include int main(void){printf("Hello World!\n");system("PAUSE");//系统PAUSEsystem("CLS");//清屏system("PAUSE");//系统PAUSEreturn 0;}。
参考资料:
百度百科-C语音
C语言中clrscr()意思是清除文本模式窗口,将之前屏幕上显示出的文字字符去掉。clrscr清屏函数并不是C语言的标准库函数,而是TC平台特有的函数,只有在Turbo C 中可以运行,在Turbo C++ 中,需要另存为(save as).C格式,才能使用。其它编译器中无法使用。
扩展资料:
在VC中无法调用clrscr()该函数,有下列办法:
1、system("cls")。这种办法的缺点是程序额外运行系统程序执行清屏操作,延长了程序执行时间。
2、system("clear")。这种办法的优点是程序通过VC直接运行程序执行清屏操作,缩短了程序执行时间,相较于system("cls")比较快。