This looks different ,but this says more about using loops and using loop variables. Print a multiplication table for table 2 ianswer122436485106127148169181020Program code is int i; for(i=10;i>0;i--) printf("%d x %d =%d\n",2,i,2*i);This code prints...