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