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).
'Clearscreen' is not used in C language. TurboC has a clrscr function (prototype in conio.h).
"Back end part"!? There is no such thing.
You can use system("cls") function with stdlib.h
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.
Not part of the standard library, on some platform it clears the screen.
The c language does not have template functions. That is a c++ thing.
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....
I guess you meant the following:'In C language, when you call a function,the parameters are passed by-value.'
libray in c++
It must be done by a platform-dependent function, it's "clrscr" from conio.h in TurboC
#include #include void main() { long 11; clrscr(); cout<<"size of long="< getch(); }