Multiplication of two numbers in C++ Program
#include<iostream.h> #include<conio.h> void main() { int a,b; clrscr(); cout<<"\nEnter two numbers:-"; cin>>a>>b; int m=a*b; cout<<"Multiply="<<m; getch(); }
Related Programs:
Hi, welcome to my website Programming.OM. My name is Om prakash kartik. This blog helps you to learn programming languages concepts and technique.
#include<iostream.h> #include<conio.h> void main() { int a,b; clrscr(); cout<<"\nEnter two numbers:-"; cin>>a>>b; int m=a*b; cout<<"Multiply="<<m; getch(); }
0 Comments