1.

Write a program to print all the factors of 20

Answer»

# include

int MAIN()

{

int i,j,;

for(i=1;i<=20;i++)

{

if(i%20==0)

printf("%d",i);

}

}




Discussion

No Comment Found