Computer Science, asked by Daiva8721, 10 months ago

Write a program in basic to multiply two numbers

Answers

Answered by prerakpatel577
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