Fungsi Clrscr Di C/c
Fungsi pustaka cin ini berpasangan fungsi pustaka cout Dimana fungsinya. Total; clrscr( ); coutnilai1; coutc String%s Unsigned Integer%u Long. Salah satu fungsi library yang telah diperkenalkan yaitu cout yaitu untuk mencetak ke layar monitor. Fungsi dikelompokkan menurut jenis dan sifatnya dan disimpan didalam sebuah file yang berekstensi.h.Sebagai contoh fungsi yang digunakan untuk mencetak ke layar monitor (cout) disimpan pada file iostream.h.
'clrscr' function (works in Turbo C compiler only) clears the screen and move cursor to upper left hand corner of screen.
How To Clear Screen In C++
C programming code for clrscr
- #include<conio.h>
- int main()
- printf('Press any key to clear the screen.n');
- getch();
- clrscr();
- printf('This appears after clearing the screen.n');
- return0;
Fungsi Clrscr Di C/c D
In the program first we display the message 'Press any key to clear the screen.' using printf and then ask the user to press a key. When user will press a key screen will be cleared and another message will be printed. clrscr function does not work in Dev C++ compiler. Also do not use clrscr in graphics mode instead use cleardevice.