multiplication of two elements in c

// to multiply of two numbers 
#include<stdio.h>
int main()
{
    int a;
    int b;
    int mult;
    printf("enter the first number: ");
    scanf("%d", &a);
    printf("enter the second number: ");
    scanf("%d", &b);
    mult= a * b;
    printf("the product of the two number is: %d\n", mult);
    
}

Comments

Popular posts from this blog

Use of function in mathematics

My resume using HTML and CSS