Write a program to check wether a number is completely divisible by 10 or no
Answers
Answered by
0
Answer:
hi bro check in google for fast answer
Explanation:
Answered by
1
Answer:
#include<stdio.h>
int main()
{
int n;
scanf("%d",&n);
if(n%10==0)
printf("%d is completely divided by 10",n);
else
printf("%d is not completely divided by 10",n);
}
Explanation:
Mark as brainliest : )
Similar questions
English,
3 months ago
Social Sciences,
3 months ago
Math,
7 months ago
Math,
11 months ago
Biology,
11 months ago
Social Sciences,
11 months ago