Sunday, 25 September 2016

multiply of two number


#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int a,b,c;
cout<<" enter the first number ";
cin>>a;
cout<<" enter the second number ";
cin>>b;
c=a*b;
cout<<" the result is "<<c;
getch();
}

No comments:

Post a Comment