create a program to check whether the number is divisible by 10 or not
Answers
Answered by
0
Explanation:
int a;
printf("enter the value for a");
scanf("%d"&a);
if (a%10==0)
printf("%d",a is divisible by 10);
else
printf("%d",a is not divisible by 10);
Similar questions