Show the hex addresses and variable values after the statements have been executed. (All pointers are 4 bytes!)




```

int main()

{

float a= 15.1, b, c;

int d = 4, e = 18, f,g;

float *b_ptr;

int *f_ptr, *g_ptr;

b_ptr = &b;

f_ptr = &f;

g_ptr = &g

c = e%d + e/d;

*f_ptr = 2.0*a - 1.0;

*b_ptr = 7/9*(a*c + d);

```

Computer Science & Information Technology

You might also like to view...

What among the following is the Kruskal's algorithm an example of?

a. Greedy algorithm b. Dynamic programming c. Brute-force algorithm d. Divide and conquer

Computer Science & Information Technology

The Winrm ______ command-line command executes a method on a management resource

a. invoke b. get c. set d. create

Computer Science & Information Technology

The application in the accompanying figure is a(n) ____.

A. Usenet feed reader B. client feed reader C. IRC feed reader D. Web-based feed reader

Computer Science & Information Technology

The term trompe l’oeil, means _____________.

a. to fool the mind b. to fool the brain c. to fool the eye d. to fool the person

Computer Science & Information Technology