Chuyển đến nội dung chính
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:
Nhận xét
Đăng nhận xét