Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Mobile Communications

Authors: Jochen Schiller

2nd edition

978-0321123817, 321123816, 978-8131724262

More Books

Students also viewed these Programming questions