Reverse multiplication table

 #include <stdio.h>


int main(){
printf("The multiplication table of 10:\n\n");
for(int i=10; i ;i--)
{
    printf("10*%d=%d\n",i,10*i);
}

 return 0;
}

Comments

Popular posts from this blog

comparing 2 dates using structures

free dynamic memory allocation

prime number