What is wrong with this code .plz tell

#include<stdio.h>
int main() {
int a,b,c,sum=0,d=0;
scanf("%d",&a);
for(int i=0;i<a;i++)
{sum=0,d=0;
scanf("%d",&b);
while(b!=0)
{
c=b%10;
if(c%2==1)
{
sum=sum+c;
}
else if(c%2==0)
{
d=d+c;
}
b=b/10;
}
if((sum%3==0)||(d%4==0))
{
printf(“Yes\n”);
}
else
{
printf(“No”);
}

}
return 0;

}

@Kunalgoyal
You have forget to move to next line after printing “NO”. Just change line 27 to printf(“No\n”);

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.