Multiply Two Numbers In C Programming Language _ Code::Blocks - Math Traders

Latest

Multiply Two Numbers In C Programming Language _ Code::Blocks

Hey friends welcome to coding siyapaa in today's tutorial we will learn how to write a program in c programming language to find the product of two numbers.

To find the product or multiplication of two numbers in c programming language we shall be writing a very simple program to create your approach quite clear about C- programming Language.

Lets Begin here:- 


#include <stdio.h>
#include <stdlib.h>

int main()
{
    int a,b,mul=0;
    printf("Please enter two integers\n");
    scanf("%d%d",&a,&b);
    mul=a*b;
    printf("sum of numbers is:%d\t",mul);
    return 0;
}

No comments:

Post a Comment