Show the hex addresses and variable values after the statements have been executed. (All pointers are 4 bytes!) The first byte of memory below is xFF2A.
Not too sure if I am doing this right. Please help. Thanks.
t s r q x d c b a
8 8 4 4.5 5 4 32.5
int main()
{
float a= 32.5, b;
int c = 5, d = 4.5, x;
float *q, *r;
int *s, *t;
q = &a;
r = &b;
s = &x;
t = &d;
*r = c%d;
*s = *t + c;