Computer Science, asked by revathyrevu2750, 7 months ago

Write a program to check wether a number is completely divisible by 10 or no

Answers

Answered by tajeshsriabh
0

Answer:

hi bro check in google for fast answer

Explanation:

Answered by rahmanbinjaffar
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