ADVT POST

C Program Taking user input Multiplication of two numbers


 C Program Taking user input Multiplication of two numbers

 

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int a,b,c;
printf("enter two values");
scanf("%d%d",&a,&b);
c=a*b;
printf ("%d",c);
getch();
}
Share on Google Plus
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.