answersLogoWhite

0

Why you are using clrscr in c language?

Updated: 8/19/2019
User Avatar

Wiki User

13y ago

Best Answer

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

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why you are using clrscr in c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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 Clearscreen in c language is used?

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


How to you use clear screen in turbo C?

by using "clrscr" command at starting of the program


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

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


C language using list?

C is a programming.it is defined by the c language


Using doublelinked list insertion sort in c language?

using doublelinked list insertion sort in c language


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

No, you don't have to.


How do you create modules in c language?

by using structure in c.........


In Which language Oracle Developed?

Oracle is developed using C language...


Write Client and server program in C language using UDP?

Write and run a client and a server program in C-language using UDP


With one variable swap the number using c language?

includeincludemain(){int a,b;clrscr();printf("enter the value of a & b\n");scanf("%d%d,&a,&b");a=a+b;b=a-b;a=a-b;printf(" value of a is %d & b is %d after swapping");getch();}


Write a program that display the current date of the system using C programming language and ALP?

#include <stdio.h> #include <time.h> void main() { time_t t; time(&t); clrscr(); printf("Today's date and time :\n %s",ctime(&t)); getch(); }