My issue
explain what error is occuring
My code
#include <stdio.h>
#include <stdlib.h>
int main(void) {
// your code goes here
int T,a,b,c,d,K,X;
scanf("%d",&T);
while(T>0)
{
scanf("%d %d %d %d %d",&a,&b,&c,&d,&K);
X= abs(b-d)+abs(a-c);
if((X%2)==(K%2))
{printf("YES \n");}
else{printf("NO \n");}
T--;
}
return 0;
}
Learning course: Level up from 1* to 2*
Problem Link: Practice Problem in - CodeChef