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;
 cout<<c;
 getch();
 }

No comments:

Post a Comment