Reverse multiplication table Get link Facebook X Pinterest Email Other Apps February 28, 2022 #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;} Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment