Saturday, January 14, 2012

MULTIPLY TWO NUMBER


#include<stdio.h>
#include<conio.h>
main()
{
int a,b,c;
clrscr();
printf("enter the first number=");
scanf("%d",&a);
printf("enter the second number=");
scanf("%d",&b);
c=a*b;
printf("sum is =%d",c);
getch();
}

No comments:

Post a Comment