Question: What would pseudocode look like for the below C + + program? Please and thank you C + + source code: #include using namespace std;

What would pseudocode look like for the below C++ program?
Please and thank you
C++ source code:
#include
using namespace std;
int main(){
int num1, num2, num3;
int* ptr1,* ptr2,* ptr3;
// Getting input from user, per each value
cout << "Enter the first integer value: ";
cin >> num1;
cout << "Enter the second integer value: ";
cin >> num2;
cout << "Enter the third integer value: ";
cin >> num3;
// Allocating memory dynamically for pointers
ptr1= new int;
ptr2= new int;
ptr3= new int;
// Assigning the values to pointers
*ptr1= num1;
*ptr2= num2;
*ptr3= num3;
// Displaying contents of variables and the pointers
cout <<"
Values of variables:" << endl;
cout << "num1: "<< num1<< endl;
cout << "num2: "<< num2<< endl;
cout << "num3: "<< num3<< endl;
cout <<"
Values of pointers:" << endl;
cout <<"*ptr1: "<< ptr1<< endl;
cout <<"*ptr2: "<< ptr2<< endl;
cout <<"*ptr3: "<< ptr3<< endl;
// Deallocate memory
delete ptr1;
delete ptr2;
delete ptr3;
return 0;
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!