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

snake game Version-2 (using random number)

allocating dynamic memory using calloc

store a table in dynamic array and then change the size of array dynamically to store more numbers