Multiplication of two numbers || Arithmetic programs || C programming
Here we are going to see Multiplication two numbers in C Programming Language.

#include <stdio.h>

void main()
{
    //Variable declaration
    int num1, num2, result;
    printf("Enter two numbers: ");

    //Taking User input
    scanf("%d %d", &num1, &num2);

    //Calculating Multiplication
    result = num1 * num2;

    //Printing Answer
    printf("The Multiplication of the two numbers is: %d", result);
}

#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post