0
Hou to clear the screen while running the code?
I put clrscr() ; but it couldn't clear the computer screen.
5 Respostas
+ 6
SAURAV GHOSH
clrscr() is non standard function that was provided in conio.h header file by Borland.
Most of the modern compilers don't support this function.
Will you please try using another function.
system("clear");
or
system("CLS");
And don't forget to include standard library header
#include<stdlib.h>
+ 3
Are you using Turbo C?
0
Dev c++
0
Help me
0
That's not working...