Answers for "multiplicaTION TABLE C"

C
2

multiplication table using c

#include <stdio.h>

int main(){
	//declaring variables
    int n,i,a,start,end;
    //taking and printing the instructions
    printf("Enter first number from where you want to start multiplication : n");
    scanf("%d",&start);
     printf("Enter Last number from where you want to end multiplication : n");
    scanf("%d",&end);
  	//using loops

    for(n=start;n<=end;n++){
        a=0;
        for(i=1;i<=10;i++){
            a+=n; //setting the value of a. i used addition instead of multiplication
          //because computer takes too much time for multiplating numbers than doing addition
          
            printf("%d x %d = %dn",n,i,a);

        }
        printf("Multiplication has ended of %dnn",n);
    }


    return 0;


}
Posted by: Guest on July-02-2021
0

multiplication table in c

#include <stdio.h>

int main()
{
    for(int a = 1; a <=10;a++)
    {
        
        printf("n%4d",a);
        for (int b = 2; b<=10;b++)
        {
            
            printf("%4d",a*b);
            
            
        }
        
    }

    return 0;
}
Posted by: Guest on August-08-2021

Code answers related to "multiplicaTION TABLE C"

Code answers related to "C"

Browse Popular Code Answers by Language