User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







c:conio.h:clrscr

clrscr

description of clrscr

clears the screen and move the cursor to upper left corner of the screen.

#include<stdio.h>
#include<conio.h>
 
int main(void)
{
   printf("press any key to start this clrscr example\n");
   getch();
   clrscr();
   printf("Jeah i have overwritten the last content.\n");
   printf("to exit... press a key\n");
   getch();
   return 0;
}

output of clrscr c example

1

  press any key to start this clrscr example

2

  Jeah i have overwritten the last content.
  to exit... press a key

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/conio.h/clrscr.txt · Last modified: 2024/02/16 01:05 (external edit)

Impressum Datenschutz