answersLogoWhite

0

clrscr-clear screen

its give you direct space to work.

without waiting

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

Clrscr does not works in dev cpp....any solution?

#include <windows.h> int main() { system("cls"); return 0; }


Why you not use clrscr in java?

Many reasons, one of them: there is no 'clrscr' in Java.


What is the alternate function for clrscr function in c language?

What do you mean by \'alternate function of clrscr\'? A function that undoes clrscr? Or one that fills the screen with random characters? Anyway, clrscr is not part of the standard C library, it is DOS-specific.


Why you are using clrscr in c language?

Function 'clrscr' is not part of the C language. Or the standard libraries. It is MS-DOS specific function, use the help for details (clrscr means clear the screen).


What is clrscr in turbo pascal?

clrscr(); it's a in-built method to clear the terminal(desktop) output which was created before..


Which header file has clrscr function?

conio.h


Write a program for addition in c plus plus?

#include#includemain(){clrscr();coutb;cout


How can you make a running message using gotoxy?

here it goes #include<iostream.h> #include<conio.h> #include<dos.h> int main() { for(int i=1;i<79;i++) { gotoxy(i,10); cout<<"hi"; delay(50); clrscr(); } return 0; }


Why do we have to use uses crt or clrscr in pascal programming language?

No, you don't have to.


How to you use clear screen in turbo C?

by using "clrscr" command at starting of the program


How can you clear screen in c without clrscr?

You can use system("cls") function with stdlib.h


What is the meaning of conio in C?

Hi, Conio.h is a header file which have functions declaration. One of them is clrscr() function. This function have its prototype in conio.h. clrscr() function is used to clear the screen. Thus, whenever u called clrscr() function u r required to define conio.h header file in your program.... Similarly there are many functions in conio.h.... Hope it will help u....