answersLogoWhite

0

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.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

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).


Why Clearscreen in c language is used?

'Clearscreen' is not used in C language. TurboC has a clrscr function (prototype in conio.h).


What is the back end part of clrscr function and printf function in c language?

"Back end part"!? There is no such thing.


How can you clear screen in c without clrscr?

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


Defult function in c language is?

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.


What is function of clrscr in c langugage?

Not part of the standard library, on some platform it clears the screen.


What is the differnce between ordinary function and template function of c language?

The c language does not have template functions. That is a c++ thing.


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....


Call by function in c language?

I guess you meant the following:'In C language, when you call a function,the parameters are passed by-value.'


What are the library function in c language?

libray in c++


What is the syntax of clear screen in c plus plus?

It must be done by a platform-dependent function, it's "clrscr" from conio.h in TurboC


How do youuse the 'long' function in turbo c?

#include #include void main() { long 11; clrscr(); cout<<"size of long="< getch(); }