Search This Blog

Thursday, March 5, 2015

C Program for Multiplication of Two variables| C Program to multiply two numbers using scanf

C Program for Multiplication of two numbers. C program for multiplication of two integers, variables, numerals.

void main()
{
int  i, j,k;
printf("Enter the two numbers to be multiplied--");
scanf("%d%d",&i,&j);

k=i*j;
printf("\Multiplication of %d and %d is =%d",i,j,k);
}

No comments:

Post a Comment