Plzz can someone say , what’s wrong with my code ??
#include<stdio.h>
#define MAX 10000
int main()
{
int N,i,m,w,s[MAX],t[MAX],l[MAX],count;
scanf("%d",&N);
for(i=0;i<N;i++)
{
printf(“enter the scores”);
scanf("%d%d",&s[i],&t[i]);
l[i]=s[i]-t[i];
if(l[i]<0)
l[i]=(-1)*l[i];
}
m=l[0];
for(i=1;i<N;i++)
{
if(l[i]>m){
m=l[i];
count=i;
}
}
if(s[count]>t[count])
w=1;
else
w=2;
printf("%d %d",w,m);
return 0;
}