--- In [email protected], "ruhatadiyaman" <ruhatadiya...@...> wrote: > > i want to clean screen in somewhere of my codes but 'clrscr()' does not work > with #include<conio.h> . as i search it does not work in DEVC++(bloodshed). > and i saw the system("cls") function which is declared in stdlib and it is > working. > is this a true way to clean screen?
Not really - it depends on at least your OS and output device. But you could
just do something like:
for (i = 50; i--; ) putchar('\n')
