A C program to display the product of two numbers

January 05, 2019 - C Program, Computer

/*A C program to display the product of two numbers*/


#include<stdio.h> 

#include<conio.h> 
void main() 
{
int a, b, p;
clrscr();
a = 20;
b =16;
p= (a * b);
printf(“product of  two numbers is %d”, p);
getch();
}

Output:



A C program to displays the product of two numbers, a c program to calculate the product of two numbers, wap to displays the product of two numbers, write A C program to displays the product of two numbers, my knowledge to you dude