Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

For each of the following, write a single statement that performs the specified task. Assume that long integer variables value1 and value2 have been declared and value1 has been initialized to 200000. a. Declare the variable longPtr to be a pointer to an object of type long. b. Assign the address of variable value1 to pointer variable longPtr. c. Print the value of the object pointed to by longPtr. d. Assign the value of the object pointed to by longPtr to variable value2. e. Print the value of value2. f. Print the address of value1. g. Print the address stored in longPtr. Is the value printed the same as value1's address

Short Answer

Expert verified
The address stored in `longPtr` is the same as `value1`'s address.

Step by step solution

01

Declare Pointer Variable

Declare a pointer variable named `longPtr` that can store the address of a long integer using the following statement in C:\[\text{long *longPtr;}\] This initializes `longPtr` as a pointer capable of holding addresses of long integer type variables.
02

Assign Address to Pointer

Assign the address of `value1` to the pointer `longPtr` using the following statement in C:\[\text{longPtr = \&value1}\] This statement uses the address-of operator `&` to obtain the memory address of `value1` and stores it in `longPtr`.
03

Print Value at Pointer Address

Print the value stored at the memory address pointed to by `longPtr` using:\[\text{printf("Value pointed to by longPtr is: \%ld", *longPtr);}\] The asterisk `*` is used to dereference the pointer, accessing the value stored at the address `longPtr` points to.
04

Assign Value to Another Variable

Assign the value of the object pointed to by `longPtr` to `value2` with:\[\text{value2 = *longPtr;}\] This dereferences `longPtr` to get the current value of `value1` and assigns it to `value2`.
05

Print Value of Second Variable

Print the value of `value2` using:\[\text{printf("Value of value2 is: \%ld", value2);}\] This statement confirms that `value2` now holds the same value as `value1` after assignment.
06

Print Address of Original Variable

Print the address of `value1` using:\[\text{printf("Address of value1 is: \%p", (void*)\&value1);}\] This prints the memory address where `value1` is stored, using `&value1`.
07

Compare Address Stored in Pointer

Print the address stored in `longPtr` using:\[\text{printf("Address stored in longPtr is: \%p", (void*)longPtr);}\] This prints the same address as `value1` since `longPtr` was assigned this address in Step 2.

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

Key Concepts

These are the key concepts you need to understand to accurately answer the question.

Pointer Declaration
In C++, pointers are variables that store memory addresses rather than data values directly. When declaring a pointer, you must indicate that it is a pointer and specify the data type it will point to. For example, to declare a pointer
  • that can point to a `long` integer, we write the statement: `long *longPtr;`.

This tells the compiler that `longPtr` is a pointer variable capable of holding the address of a `long` integer. The asterisk (`*`) in the declaration signifies that we are defining a pointer, not a regular variable.
Memory Addressing
Every variable in a C++ program is stored somewhere in the computer's memory, and each location has its own address. When you need to access the location of a variable, you use its memory address. To obtain the address,
  • you use the address-of operator `&`.
  • For example: `longPtr = &value1;` assigns the address of `value1` to the pointer `longPtr`.

This operation allows us to access or manipulate the variable `value1` indirectly through the pointer.
Pointer Dereferencing
Dereferencing a pointer means accessing the value stored in the memory location the pointer refers to. In C++, this is done using the asterisk (`*`) operator. If you have a pointer like `longPtr`, you can access
  • the value it points to by writing: `*longPtr`.

Whenever you see the dereference operator `*` in the context of a pointer, think of it as the key to open the box into which the pointer is looking.
Variable Assignment
In any programming language, assigning values to variables is a fundamental task. In the context of pointers, this can mean assigning an address to a pointer or a value to a variable.
Once you have dereferenced a pointer to get a value,
  • you can use that value in expressions or assign it to another variable as follows: `value2 = *longPtr;`.

This assigns the value pointed to by `longPtr` to `value2`, effectively copying the value from the original variable to another.
Printf Function
The `printf` function is a staple of C and C++ programming, used for formatted output to the screen. When working with pointers and addresses, `printf` can display both values and memory locations.
For example, to print the value pointed by a pointer
  • we use: `printf("Value pointed to by longPtr is: %ld", *longPtr);`.

In another scenario, to print the address stored in a pointer, use `%p` in the format string: `printf("Address stored in longPtr is: %p", (void*)longPtr);`. This helps visualize what's happening in memory.

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

Write a program that inputs a telephone number as a string in the form (555) 555-5555. The program should use function strtok to extract the area code as a token, the first three digits of the phone number as a token, and the last four digits of the phone number as a token. The seven digits of the phone number should be concatenated into one string. Both the area code and the phone number should be printed.

Write two versions of each string copy and string-concatenation function in Fig. 8.30. The first version should use array subscripting, and the second should use pointers and pointer arithmetic.

(Check Protection) Computers are frequently employed in check-writing systems such as payroll and accounts-payable applications. Many strange stories circulate regarding weekly paychecks being printed (by mistake) for amounts in excess of \(1 million. Weird amounts are printed by computerized check-writing systems, because of human error or machine failure. Systems designers build controls into their systems to prevent such erroneous checks from being issued. Another serious problem is the intentional alteration of a check amount by someone who intends to cash a check fraudulently. To prevent a dollar amount from being altered, most computerized check-writing systems employ a technique called check protection. Checks designed for imprinting by computer contain a fixed number of spaces in which the computer may print an amount. Suppose that a paycheck contains eight blank spaces in which the computer is supposed to print the amount of a weekly paycheck. If the amount is large, then all eight of those spaces will be filled, for example, 12345678 (position numbers) On the other hand, if the amount is less than \)1000, then several of the spaces would ordinarily be left blank. For example, 99.87 \-------- 12345678 contains three blank spaces. If a check is printed with blank spaces, it is easier for someone to alter the amount of the check. To prevent a check from being altered, many check-writing systems insert leading asterisks to protect the amount as follows: ***99.87 \-------- 12345678 Write a program that inputs a dollar amount to be printed on a check and then prints the amount in check-protected format with leading asterisks if necessary. Assume that nine spaces are available for printing an amount.

For each of the following, write C++ statements that perform the specified task. Assume that unsigned integers are stored in two bytes and that the starting address of the array is at location 1002500 in memory. a. Declare an array of type unsigned int called values with five elements, and initialize the elements to the even integers from 2 to 10. Assume that the symbolic constant SIZE has been defined as 5. b. Declare a pointer vPtr that points to an object of type unsigned int. c. Use a for statement to print the elements of array values using array subscript notation. d. Write two separate statements that assign the starting address of array values to pointer variable vPtr. e. Use a for statement to print the elements of array values using pointer/offset notation. f. Use a for statement to print the elements of array values using pointer/offset notation with the array name as the pointer. g. Use a for statement to print the elements of array values by subscripting the pointer to the array. h. Refer to the fifth element of values using array subscript notation, pointer/offset notation with the array name as the pointer, pointer subscript notation and pointer/offset notation. i. What address is referenced by vPtr + 3? What value is stored at that location? j. Assuming that vPtr points to values[ 4 ], what address is referenced by vPtr -= 4? What value is stored at that location

(Writing the Word Equivalent of a Check Amount) Continuing the discussion of the previous example, we reiterate the importance of designing checkwriting systems to prevent alteration of check amounts. One common security method requires that the check amount be both written in numbers and "spelled out" in words. Even if someone is able to alter the numerical amount of the check, it is extremely difficult to change the amount in words. Write a program that inputs a numeric check amount and writes the word equivalent of the amount. Your program should be able to handle check amounts as large as $99.99. For example, the amount 112.43 should be written as ONE HUNDRED TWELVE and 43/100

See all solutions

Recommended explanations on Computer Science Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free