Tuesday, 26 June 2018

How we do multiplication in C πŸ™„


Hello friends today we will learn that how we do multiplication in C language so let's starts.
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();
}
Its work 100%.
Thanks.

Most viewed