Computer Science, asked by ramron7401, 7 months ago

Write a program to check whether the number is divisible by 9 or not in C​

Answers

Answered by visheshsaxena49
3

Answer:

int num=10;

if( num%9==0 )

printf(" true");

else

printf(" false");

Similar questions