From 7199b639f372d6e342a141c455947cc7a9ff196c Mon Sep 17 00:00:00 2001 From: AmalBro <72186695+AmalBro@users.noreply.github.com> Date: Thu, 1 Oct 2020 11:55:40 +0530 Subject: [PATCH] Program user interface updated and made the pgm to find the mul of any 2 numbers --- mul | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mul b/mul index 8b6d3b0..0efdcbb 100644 --- a/mul +++ b/mul @@ -1,7 +1,9 @@ #include void main() { - int m; - m=9*2; + int m,a,b; + printf("Enter 2 numbers :"); + scanf("%d %d",&a,&b); + m=a*b; printf("%d",m); }