#include<stdio.h>
#include<conio.h> void main() {
int a, b, c; printf("Enter two numbers to multiply\n"); scanf("%d%d",&a,&b); c = a * b; printf("multiplication of entered numbers = %d\n",c); getch(); }
No comments:
Post a Comment