how to find multiplication of any number with c language??

 how to find multiplication of any number with c language??

you can find by using for loop 



here is your code :-


#include<stdio.h>

int main()
{
int i ;
int n;
printf("entre a number which you want multiplication of number n=\n");
scanf("%d",&n);
printf("multiplication table of n\n");
   for(i=10;i;i--){
     printf("n*%d=%d\n",i,n*i);}
    return 0;
}

,........,..............,.......,......,.......,...

πŸ˜πŸ˜πŸ˜πŸ˜˜πŸ˜˜πŸ˜‡πŸ˜‡πŸ˜‡


Comments