Question: this is c please do c-h do not do a thank you 3. [80 pts] Assume that single-precision floating-point numbers are stored in 4 bytes,

![3. [80 pts] Assume that single-precision floating-point numbers are stored in 4](https://dsd5zvtm8ll6.cloudfront.net/si.experts.images/questions/2024/09/66f2fc07d83de_26366f2fc076169e.jpg)

this is c please do c-h do not do a thank you
3. [80 pts] Assume that single-precision floating-point numbers are stored in 4 bytes, and that the starting address of the array is at location 1002500 in memory. Each part of the exercise should use the results of previous parts where appropriate. (a) Define an array of type float called numbers with 10 elements, and initialize the elements to the values 0.0, 1.1, 2.2, ..., 9.9. Assume the symbolic constant SIZE has been defined as 10. (c) Print the elements of array numbers using array index notation. Use a for statement. Print each number with 1 position of precision to the right of the decimal point. (d) Give two separate statements that assign the starting address of array numbers to the pointer variable nPtr. (e) Print the elements of array numbers using pointer/offset notation (i.e. x[i] = *(x+i)) with the pointer nPtr. (f) Print the elements of array numbers using pointer/offset notation with the array name as the pointer. (g) Assuming that nPtr points to the beginning of array numbers, what address is referenced by nPtr+8? What value is stored at that location? (h) Assuming that nPtr points to numbers[5], what address is referenced by nPtr = nPtr - 4? What's the value stored at that location
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
