Computer Science, asked by dheerajshaik, 2 months ago

input and output functions in c. write a program to find the product of two numbers.please help. I am 9 th class please help me. ​

Answers

Answered by walialakshay06
1

Explanation:

#include<stdio.h>

#include<conio.h>

void main()

{

int one, two, multiply;

printf("Enter first number - ");

scanf("%d",&one);

printf("Enter second number - ");

scanf("%d",&two);

multiply = one * two;

printf("The multiplication of numbers %d and %d is %d",one,two,multiply);

getch();

}

Similar questions