Sunday, 15 January 2012
Program To Find Multiplication of Two Numbers In C++
#include<iostream.h>
#include<conio.h>
main()
{
clrscr();
int a,b,c;
cout<<"Enter first number=";
cin>>a;
cout<<"Enter second number=";
cin>>b;
c=a*b;
cout<<c;
getch();
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment