Write a program in basic to multiply two numbers
Answers
Answered by
1
Answer:
If you want for C Language, then there you go.
Explanation:
#include<stdio.h>
#include<conio.h>
void main()
{
int a=5,b=5,c;
clrscr();
c=a*b;
printf("The multiplication of two numbers is %d",c);
getch();
}
Similar questions
Hindi,
5 months ago
Math,
5 months ago
Science,
5 months ago
Business Studies,
10 months ago
India Languages,
10 months ago
Chemistry,
1 year ago