I'm a new C programming learner. I'm writing a code by including stdio.h and conio.h but if I write clrscr(); inside my code, it isn't working. If I remove the part clrscr(); it's working. Why??
Here's the source code:
#include<stdio.h>
#include<conio.h>
void main()
{
    clrscr();
    printf("A tab \tis used in this line.");
    getch();
}
 
    