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 num num num;
int ptr ptr ptr;
Getting input from user, per each value
cout "Enter the first integer value: ;
cin num;
cout "Enter the second integer value: ;
cin num;
cout "Enter the third integer value: ;
cin num;
Allocating memory dynamically for pointers
ptr new int;
ptr new int;
ptr new int;
Assigning the values to pointers
ptr num;
ptr num;
ptr num;
Displaying contents of variables and the pointers
cout
Values of variables:" endl;
cout "num: num endl;
cout "num: num endl;
cout "num: num endl;
cout
Values of pointers:" endl;
cout ptr: ptr endl;
cout ptr: ptr endl;
cout ptr: ptr endl;
Deallocate memory
delete ptr;
delete ptr;
delete ptr;
return ;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
