<span>The modf() function will do this for you:
double x, y, d;
x = -14.876;
y = modf(x, &d);
printf("Fractional part = %lf\n", y);
</span>
The corresponding logical address is 200.
If a program is operating with execution-time binding, the physical address generated will be 300. However, if the relocation register is set to 100, the corresponding logical address will be 200.
This is because the relocation register is used to offset the physical address, so that it can be used to calculate the logical address.
Learn more here:
brainly.com/question/20355023
#SPJ4
Two computers can safely have the same IP address in certain cases. In most cases, if those two computers are on the same local network, it breaks connectivity for one or both of them. Internet protocols work by sending small, individually addressed messages. Each message can be routed differently.
I hope this helps you.