Search
 
SCRIPT & CODE EXAMPLE
 

C

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 : 
");
    scanf("%d",&start);
     printf("Enter Last number from where you want to end multiplication : 
");
    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 = %d
",n,i,a);

        }
        printf("Multiplication has ended of %d

",n);
    }


    return 0;


}
Comment

multiplication in c

//use the "*"

/*var*/ * /*var*/;
Comment

multiplication table in c using array

#include <stdio.h>

int main()
{
    int namta[11][10]; //programme will run upto 11 multiplication tables, each table has 10 columns
    int i,j;
    for(i = 1; i <= 11; i++)
    {
        for(j = 1; j <= 10; j++)
        {
            namta[i][j] = i * j;  //getting the multiplating value into the array
        }
    }

    for(i = 1; i <= 10; i++){
        for(j = 1; j <= 10; j++){
            printf("%d x %d = %d
",i,j,namta[i][j]);  //printing the array of results calculated in the previous loops
        }
        printf("
");
    }


    return 0;
}
Comment

c program to print the multiplication table

#include <stdio.h>
int main(){
    int a, b, c, e;
    printf("Enter table format: 
");
    scanf("%d", &a);
    printf("Enter end of table: 
");
    scanf("%d", &e);
    for(b = 0; b <= e; b++){
        printf("%d * % d = %d
", b, a, a*b);
    }
}
Comment

multiplication table in c

#include <stdio.h>
int main()
{
    // declaring table
    int table[10][10];


    int sum = 0;
    // loop
    for(int i = 0; i < 10; i++){
        printf("%d table starting 

",i + 1);
        for(int j = 0; j < 10; j++){
             // using addition instead of multiply for better performance
            sum += (i + 1);
            //
            table[i][j] = sum;
            // printing table
            printf("%d x %d = %d 
",i + 1,j + 1,table[i][j]);
        }
        sum = 0;
        printf("
");
    }

}
Comment

a program to print the multiplication table of a given number in c

int n, i;
    printf("Enter a number: ");
    scanf("%d", &n);
    printf("Multiplication table of %d:
 ", n);
    for (i = 1; i <= 10; i++){
        printf("%d x %d = %d
", n, i, n * i);
        }
    return 0;
Comment

PREVIOUS NEXT
Code Example
C :: how to get the ascii value of a character in c 
C :: celsius to fahrenheit formula 
C :: get float in c 
C :: epoch time in c 
C :: c read file 
C :: c read file content 
C :: bd number regex 
C :: fwrite in c 
C :: bootstrap form 
C :: c pointers 
C :: c for 
C :: DrawText() raylib 
C :: how to get the lowest number on a array in c 
C :: how to input n space separated integers in c 
C :: c median of an array 
C :: #define f_cpu 
C :: absolute value of intel intrinsic 
C :: C fscanf ignore commas 
C :: print 100 times c 
C :: threads in c 
C :: C# special character display 
C :: Increment & Decrement Operator in C language 
C :: *= in c 
C :: pathlib exclude hidden file 
C :: parcel-builder put image in sub folder 
C :: amazon kinesis disaster recovery 
C :: send an array through a pipe 
C :: 1 f = c 
C :: c math.h sqrt 
C :: Chef in Vaccination Queue codechef solution in c++ 
ADD CONTENT
Topic
Content
Source link
Name
6+2 =