Code:
#include<stdio.h>
int main()
{
int n,m;
printf(“enter number\n”);
scanf(“%d”,&n);
if(n%2==0)
{
printf(“the number is even\n”);
}
else
{
printf(“the number is odd\n”);
}
printf(“thank you\n”);
return 0;
}
Comment what warning this code is giving.