Mail Archives: djgpp/1997/03/05/08:49:50
To clear screan use:
#include <conio.h>
main()
{
clrscr();
return 0;
}
First clearscrean() is not a function to be called use clrscr(), second
the way you did it you define a function void clearscrean(void) instead of
calling it.
On Wed, 5 Mar 1997, Leon Busiello wrote:
> I am a brand new djgpp user and i can't get any special functions that
> aren't in stdio.h to work.
>
>
> I wanted to clear the screen so I did this:
>
> #include <conio.h>
> main()
> {
> void clearscreen(void);
> return 0;
> }
>
> all it did was go to the next line. Can someone help? e-mail me at
> sbusie01 AT utopia DOT poly DOT edu thanx
>
- Raw text -