I am having problem with `clrscr' undeclared (first use this function) (Each undeclared identifier is reported only once for each function it appears in.) when I am compiling it in DEV-C++ .....please let help me with these
#include <stdio.h>
#define p print f
#define s scan f
main()
{
int a,b,sum,product;
clrscr();
<<<< this is my problem
sum = 0
product = 0
printf("Enter First number:")scanf("%d",& a);
printf("Enter Second number:")scanf("%d",& b);
sum = a+b;
product = a*b;
printf("sum of two number : %d",product);
getch();
}