Friday, 2 April 2021

Multiplication program for C

 



To do this on your computer you need to have compiler here i am using turboC++.
Program for multiplication -
#include<stdio.h>
#include<conio.h>
Void main()
{
Clrscr();
Long signed int a,b,c;
Printf("enter any 2 numbers which you want to multiply");
Scanf("%ld%ld",&a,&b);
C=a*b;
Printf("multiplication of these two numbers is = %ld",c);
Getch();
}

3 comments:

Unknown said...

Bohot badiya

Unknown said...

Good vinayak😁😁😁

Vinayak patel said...

Thanks😉

Most viewed