Consider a computer that has a byte addressable memory organized in 32 bit words according to the big endian scheme. A program reads ASCII characters entered at a keyboard and stores them in successive byte locations, starting at location 1000. Show the contents of two memory words at locations 1000 and 1004 after the name "johnson" has been entered.
|
|
|||||||||||
|
|
|
Just convert each letter to hex using a handy ASCII table, and add them to memory sequentially. This renders easily as gorgeous ASCII graphics:
The last four bytes were left out, this is homework after all. |
||||
|
|
|
I think than words will have next values:
'Cause of name contains only 7 characters, eight character is unknown, so last position (00) may have any value. |
||
|
