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