Given the following declarations and assignments, determine the
out of the following 2 cout statements:
int one;
int* ptrOne;
one = 10;
ptrOne = &one;
cout << ptrOne; //1- determine the output of this
statement in your reply
cout << *ptrOne; //2- determine the output of this
statement in your reply
Given the following declarations and assignments, determine the out of the following 2 cout statements: int one; int* p
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
Given the following declarations and assignments, determine the out of the following 2 cout statements: int one; int* p
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!