Write program to multiply two numbers in C language - World Of Programs

World Of Programs

Let's Be The Coder

Recent Tube

Post Top Ad

Write  program to multiply two numbers in C language

Write program to multiply two numbers in C language

Share This
How to write a program to add two numbers in C language

#include <stdio.h>
#include <conio.h>
int main()
{
int a,b,c;

printf("Enter two numbers to multiply\n");
scanf("%d%d",&a,&b);

Multiplication=a+b;
printf("Multiplication of the entered numbers=%d\n",c);

return 0;
}

OUTPUT: -

Enter two numbers to multiply
7
3
Multiplication of the entered numbers= 21

No comments:

Post a Comment

Post Bottom Ad

Responsive Ads Here

Pages