A C program to display the product of two numbers

/*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

Post a Comment

0 Comments