Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Assuming a standard computer system (float and int types get 4 bytes of memory, short type gets 2 bytes of memory, and long type gets

Assuming a standard computer system (float and int types get 4 bytes of memory, short type gets 2 bytes of memory, and long type gets 8 byte memory) with the memory structure as shown in Figure 7.1.1 determine the output of the following statements when they are executed as part of complete programs.

image text in transcribed

2) char val1= 'm'; // 1000

int val2 = 13; // 1004

cout

&val2 is 1004

4) short x1 = 21, x2 = 14, x3 = 89; // 1000, 1002, 1004

float y1 = 3.452 // 1006

cout

&y1 is 1006

6) float s1 = 3.2;

short x1 = 3, x2 = 5;

int x3 = 2456;

cout

&x1 = 1004 and &x3 = 1008

8) Write C++ statement to store the value 487 in a short type memory cell, and to store the value 7.34 in a float type memory cell and to print the address of these values.

float val1 = 7.34;

short val2 = 487;

cout

This is what I got are they correct? if not please explain why and how you came up with the coreect solution

d file:///Users/K-Hype/Downloads/C++Book-Ch7-Pointers-201 6%20(1).pdf Microsoft Word -C++Book-Ch7-Pointers-2016 1 / 50 7.1. Anatomy of Memory and "Address of" Operator& Recall that a byte of memory is the amount of memory needed to store one character data. One byte is equal to 8 bits or 8 circuits. The entire memory is made of millions of bytes. For the purpose of conveniently managing the memory, each byte of the memory is given an address. These addresses are contiguous numbers. Though the actual memory addresses are hexa-decimal coded numbers, for simplicity, we can use the decimal equivalent of them to identify the individual memory cells. So, each byte of memory has a number that identifies it. This is analogous to each mail box on a street having an address written on it for the mail-man to identify and put each mail in the right mail box. Figure 7.1.1 shows a set of memory bytes that begin with the address 1000 Here we use 1000 as the beginning address for illustrative purposes. Actual addresses may are different and they are coded in hexa-decimal coding system. The numbered boxes shown in the figure represent bytes of memory. For the purposes of our discussion, we shall assume this to be the memory of the computer system that we are working with. 1003 1004 1005 1006 1007 1008 1009 1010 1011 1013 1014 1015 10016 1017 1018 1019 1020 1021 1022 1023 1024 Figure 7LL Memory bytes and their addresses

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

Visual C# And Databases

Authors: Philip Conrod, Lou Tylee

16th Edition

1951077083, 978-1951077082

More Books

Students also viewed these Databases questions

Question

What is Change Control and how does it operate?

Answered: 1 week ago

Question

How do Data Requirements relate to Functional Requirements?

Answered: 1 week ago