In this tutorial, we will discuss a concept of C++ program to find the product of two numbers using the pointer variable
In the C++ programming language, we can use the pointer variable to find the product of two numbers
In this article, we are going to learn how to Display product of two numbers using the pointer variable
Program
#include <iostream> #include <conio.h> using namespace std; int main() { int num1,num2; //1 int *ptr1,*ptr2; //2 int product; //3 cout << "Please enter the value to num1: "<< endl; //4 cin>>num1; //5 cout << "Please enter the value to num2: "<< endl; //6 cin>>num2; //7 ptr1=&num1; //8 ptr2=&num2; product=*ptr1 * *ptr2; //10 cout<<"Product of the two integer values is: "<<product; //11 getch(); return 0; return 0; }
When the above code is executed, it produces the following results
Please enter the value to num1: 12 Please enter the value to num2: 13 Product of the two integer values is: 156
Methods
Similar post
C program to add two numbers using the pointer
C++ program to add two numbers
C++ program to add two numbers using pointer
C program to find the product of two numbers using the pointer
Suggested for you
Input-output function in C language
Explanation of one dimensional array In this post, we will discuss the concept of "Explanation…
Python program to calculate the sum of odd and even numbers in a list In…
Python code to Calculate sum of odd and even in a list In this tutorial,…
How to find reverse number using method In this article, we will discuss the concept…
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…
View Comments
Modify the previous code to implement functions that uses
call-by-reference (in pointers) to multiply these two numbers.