adsense

Hii, welcome to my site. My name is Om prakash kartik. This blog helps you to learn programming languages concepts.

Multiplication of two numbers in C++ Program

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


Output:-

Related Programs:
  1. Addition of two numbers in C++ Program
  2. Subtraction of two numbers in C++ Program
  3. Division of two numbers in C++ Program

Post a Comment

0 Comments