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:
Cùng tham gia bình luận bài viết này nhé!