write a program to print all the factors of 20
Answers
Answered by
6
# include<studio.h>
int main()
{
int i,j,;
for(i=1;i<=20;i++)
{
if(i%20==0)
printf("%d",i);
}
}
Similar questions