Not part of the standard library, on some platform it clears the screen.
"Back end part"!? There is no such thing.
You can use system("cls") function with stdlib.h
'Clearscreen' is not used in C language. TurboC has a clrscr function (prototype in conio.h).
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....
conio.h
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.
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).
"Back end part"!? There is no such thing.
You can use system("cls") function with stdlib.h
'Clearscreen' is not used in C language. TurboC has a clrscr function (prototype in conio.h).
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....
It must be done by a platform-dependent function, it's "clrscr" from conio.h in TurboC
conio.h
#include #include void main() { long 11; clrscr(); cout<<"size of long="< getch(); }
Clearing screen in DEV C++ compiler :#includeint main(){system("cls");}OR: Permanent solution :-Paste the following text in "C:\Dev-Cpp\include\conio.h" of your system#include#includevoid clrscr(){system("cls");}Then you can use clrscr() as a normal built in function under !!!!!!!!!!!
Default functions are pre defined functions.Eg. printf();scanf();getch();clrscr();etc..Actually, no-one uses the term 'default function'. (Let alone 'defult function'.)Another answer: Perhaps it is 'main' what you meant.
arabic